大约有 91 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...t;{ console.log(AM.AC.myname); console.log(BM.BC.myname); console.log(Laya.Browser.clientWidth); }
来源: Laya_社区 发布时间: 20180918
...想问这个问题,我把js替换了,index.html也引用了。但是Browser.window.dcodeIO.ProtoBuf 就找不到类了
来源: Laya_社区 发布时间: 20170220
...t_protocol:any = null; function protobufInit(){ var ProtoBuf:any = Browser.window.protobuf; ProtoBuf.load("type.proto", this.onProtoLoaded); ProtoBuf.load("Lobby/protobuf/client2world_protocol.proto", this.onProtoBufLoaded1); } function onProtoLoaded(err:any, root:any):void{ ...
来源: Laya_社区 发布时间: 20170911
...rry_frame_005.png"; url= Laya.URL.formatURL(url); var imageSource=new Laya.Browser.window.Image(); var thisObj = this; var onload=function (){ var tex=new Laya.Texture2D(imageSource.width,imageSource.height,1,false,true); tex.wrapModeU=1; tex.wrapModeV=1; tex.loadImageSource(imageSource,true); tex._...
来源: Laya_社区 发布时间: 20190923
...ya.d3.resource.models.SkyBox; import laya.display.Stage; import laya.utils.Browser; import laya.utils.Stat; import laya.utils.Timer; import threeDimen.common.CameraMoveScript; import threeDimen.common.CameraStat; import threeDimen.common.SpriteMoveScript; import threeDimen.common.SpriteStat; public ...
来源: Laya_社区 发布时间: 20170331
... new b2DebugDraw(); //创建一个画板 var canvas = Laya.Browser.createElement('canvas'); //设置大小 canvas.width = Laya.stage.width; canvas.height = Laya.stage.height; var ctx = canvas.getContext('2d'); Laya.stage.graphics.clear(false); ...
来源: Laya_社区 发布时间: 20180905
...data=/*__JS__ */new ImageData(canvasWidth,canvasHeight);; var imgdata=Laya.Browser.context.getImageData(0, 0, canvasWidth, canvasHeight); 这样也可以 2019-05-27 0 2 分享 微博 QZONE 微信 yunzhongjushi 赞同来自: 微信里面不能drawToCanvas 只能drawToTexture 2019-06-03 0 1 分...
来源: Laya_社区 发布时间: 20190317
...t;{ console.log(AM.AC.myname); console.log(BM.BC.myname); console.log(Laya.Browser.clientWidth); } 2018-10-26 0 1 分享 微博 QZONE 微信 177*****949 赞同来自: 你这个方法有个问题 : 当a类和b类 都使用一个命名空间(模块名称)时 , 其实也是非常的麻烦的 . 不知...
来源: Laya_社区 发布时间: 20180926
... private function onLink(data:*):void { // TODO Auto Generated method stub Browser.window.location.href=data; }5、实现html页面跳转 示例如下: var iHtml:HTMLIframeElement=new HTMLIframeElement(); Laya.stage.addChild(iHtml); iHtml.href="res/html/test.html";6、简单的图片显示 示例...
来源: Laya_社区 发布时间: 20161027
...ya.Event.MOUSE_WHEEL, this, this.mouseWheel) } onUpdate(): void { if (Laya.Browser.onMobile) { this.AroundByMobileInput(); } else { this.AroundByMouseInput(); } if (!this.canRotation_X) this.targetAngles.y = 0; if (!this.canRotation_Y) this.targetAngles.x = 0; //Lerp. this.CurrentAngles = this.LerpV...
来源: Laya_社区 发布时间: 20190224