大约有 173 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
... { } }通过编译后会变成下面的代码class Demo{ constructor (){ //this.a=0; //this.b=null; } }这里字段a和b在编译后会被注释掉,只有初始化的时候给a和b赋值,编译后的代码才不会注释掉a和b这两个字段,我想问一下,能不能不通过初始化赋...
来源: Laya_社区 发布时间: 20210222
... • 2018-07-16 21:00 先render 后matter 131*****809 • 2018-07-16 17:53 this.engine=this.Matter.Engine.create({enableSleeping:true});就这个报错了 Yangcy • 2019-03-04 11:55 我也是这个就报错了 官方例子 好多坑。。
来源: Laya_社区 发布时间: 20180716
...YA TS 里这么写 class XXX extends Sprite { public set x(value:number) { this._x = value; } public get x():number { return this._x; } } 这样写在WEB环境下固然可行 但是却会导致打包坐标不生效 而在AS3就不一样了 可以直接super.x 希望官方能解决,当然也有代...
来源: Laya_社区 发布时间: 20180227
...0,100,200,200); img.graphics.drawTexture(t); img.graphics.restore(); this.addChild(img); 2019-01-11 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Laya07 相关问题 请问LayaAir中如何使图片以圆形的方式显示? Textu...
来源: Laya_社区 发布时间: 20190111
...,白鹭里加载我使用的是: import ProtoBuf = dcodeIO.ProtoBuf; this._protoBuilderMap ={user:ProtoBuf.loadProto(RES.getRes('user_proto'))}; 然后打包数据这样使用就可以了: let head: string = name.substring(0, name.indexOf('.')); let Message = this._protoBuilderMap[head].build(...
来源: Laya_社区 发布时间: 20171103
...错!!!!!!!! as3代码 编译后的code.js 报错 多了个this 小程序版本 你们都没发现这个bug吗!!!! 难道是我用错了???? 附件 : --> 2018-05-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20180515
as3 Dictionary 的问题 在layaflash 中初始化mornUI ,App.init(this) 时,会引起RenderManager.renderAll 的死循环,我断点进去看了下,是Dictionary类引起的,用for in 遍历Dictionary,会把Dictionary里面本身的属性也都遍历出来,引起死循环。这个改怎...
来源: Laya_社区 发布时间: 20160919
... 浏览: 1217 关注: 2 人 Zorana • 2018-07-26 11:28 我知道了 我的this.event 的Event 不小心大写了 谢谢~
来源: Laya_社区 发布时间: 20180726
...it(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMode.NO_SCALE; this.stage.align = StageAlign.TOP_LEFT; IFlash.setSize(1000, 600); //2D项目中设置场景尺寸 IFlash.setOrientationEx(1); //是否为横屏模式 IFlash.setBgcolor("#000000...
来源: Laya_社区 发布时间: 20151103
... Laya.init(550,400); Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { var json:JSON=Laya.loader.getRes("res/atlas/comp.json"); }JSON的解析和AS3的是一样的 2016-10-27 2 0 分享 微博 QZONE 微信 bobofuns - 我...
来源: Laya_社区 发布时间: 20161027