• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 91 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)

81. 如何使用TS的命名空间(namespace)? [ 55%]

...t;{ console.log(AM.AC.myname); console.log(BM.BC.myname); console.log(Laya.Browser.clientWidth); }

来源: Laya_社区 发布时间: 20180918

82. protobuf 自己升级到3.0版,现在放在src目录下,可以使用,但是我怎么放在bin\libs\下当库使用,我需要做哪些东西 [ 55%]

...想问这个问题,我把js替换了,index.html也引用了。但是​Browser.window.dcodeIO.ProtoBuf 就找不到类了

来源: Laya_社区 发布时间: 20170220

83. 如何在laya中直接使用proto中定义的enum? [ 54%]

...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

84. Texture2D.setPixels会导致图片质量变差了,获取原生的pixels没有进行改动。怎么回事呢? [ 53%]

...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

85. 没有人尝试使用3d物理引擎么 [ 52%]

...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

86. Laya 集成Box2d 可以么?着急 [ 50%]

... 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

87. Laya2.0 WebGl模式,使用 drawToCanvas 报错 ImageData is not defined? [ 50%]

...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

88. module写法的模块无法使用,其他地方使用会报错 [ 48%]

...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

89. 富文本:LayaAir下 HtmlDivElement的使用汇总 [ 34%]

... 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

90. 官方案例里摄像机绕物体旋转脚本的问题 [ 27%]

...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