大约有 1,536 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0057 秒)
...C = npc.BaseNPC; var npcc:BaseNPC = new BaseNPC(); 只要我new它,都没addChild到舞台上,运行出来就是很大一片漆黑。 但是如果我这样写就是正常的:import BaseNPC = npc.BaseNPC; var npcc:BaseNPC = new npc.BaseNPC(); 或者不import,直接: var npcc: npc.BaseNPC...
来源: Laya_社区 发布时间: 20180205
...3) 创建Sprite方式: sp = new Sprite(); addChild(sp); sp.loadImage("./assets/ico_back.png"); 6、定位到 laya.core.js 1438行发现有这样的描述: if (!tex.loaded){ tex.once(/*laya.events.Event.LOADED*/"loaded",this,this._textureLoaded,...
来源: Laya_社区 发布时间: 20171015
... console.log('sssss', fgui.GRoot.inst.displayObject); Laya.stage.addChild(fgui.GRoot.inst.displayObject); fgui.UIPackage.addPackage("res/Basics"); fgui.UIConfig.defaultFont = "Microsoft YaHei"; fgui.UIConfig.verticalScrollBar = "ui://Basic/ScrollBar_VT";...
来源: Laya_社区 发布时间: 20191030
....Handler.create(this, res => { let a = new Laya.Image(_url); Laya.stage.addChild(a); })) 以下是安卓层面输出日志:09-22 11:08:10.811 27895-28111/? D/jswrapper: JS: [WARN]: [warn]Retry to load: https://lupic.cdn.bcebos.com/2 ... 0.jpg 09-22 11:08:10.996 27895-28111/? D/jswrapper: JS: [W...
来源: Laya_社区 发布时间: 20200922
...gt; { let sp3: Laya.Sprite3D = res.create() as Laya.Sprite3D; this.scene3d.addChild(sp3); }); }) Laya.loader.loadPackage("sub2", this.printProgress).then(() => { Laya.loader.load("sub2/Sphere.lh").then((res: any) => { let sp3 = res.create(); this.scene3d.addChild(sp3); }); }) } printProgress(r...
来源: Laya3.0_文档 发布时间: 20241014
...2D = new Particle2D(null); part.url = AssetsUtil.getUrl("ui/meigui.part"); addChild(part); 附件 : --> cherry.zip 2017-03-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 cuixueying 赞同来自: 能否把你可...
来源: Laya_社区 发布时间: 20170318
...(600,400); this.sp = new Laya.Sprite(); Laya.stage.addChild(this.sp); var arr:Array<any> = [this.sp,1,2,3]; this.sp.graphics._saveToCmd(this.test1,arr); } test1(x,y,args):void { console.log("args[0]"+args[0]+",args...
来源: Laya_社区 发布时间: 20170316
...的update。 为了减少update子节点的层层调用,我重写了addChild的逻辑,使最上层的节点保存了所有子节点的列表,updateChildren的时候就不层层调用,直接在列表上遍历。 但是我试了另一种方式: > 对象不再调用updateChildren...
来源: Laya_社区 发布时间: 20170821
...nterval = 30; ani.index = 1; ani.play(); Laya.stage.addChild(ani); postMessage(ani);//将获取到的数据发送会主线程 } 但是会报错,Uncaught ReferenceError: Laya is not defined laya怎么定义? 2018-01-08 0 0 分享 微博 QZONE 微信 为什么...
来源: Laya_社区 发布时间: 20180108
...l/Main.ls',Laya.Handler.create(this,(scene:Laya.Scene3D)=> { Laya.stage.addChild(scene); })); }); } 这样的加载一定包异常,不延时直接在构造函数里,执行加载没问题 2019-07-19 0 0 分享 微博 QZONE 微信 139*****202 赞同来自: 试试看用settimeout呢 2019-0...
来源: Laya_社区 发布时间: 20190719