大约有 949 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
Laya_社区(655) Laya2.0_文档(158) Laya_示例(48) Laya2.0_示例(39) Laya3.0_文档(24) Laya3.0_api(20) laya_api(3) Laya2.0_api(2)
...载引擎需要的资源 Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded)); } private function onLoad2():void { Laya.timer.once(2000, this, onLoaded); } private function onLoaded():void { //实例UI界面 //var testView:TestView = new TestView(); //Laya.stage.addChild(testView...
来源: Laya_社区 发布时间: 20180525
...zy3jw"; ttfloader.load("font/fzy3jw.ttf"); ttfloader.complete=Laya.Handler.create(this,()=>{ let txt:Laya.Text=new Laya.Text(); txt.text=""; txt.font="fzy3jw"; txt.fontSize=50; Laya.stage.addChild(txt); })我应该修改哪里? 附件 : --> 2019-04-03 添加评论 免费帖 --> 分享 微博 QZ...
来源: Laya_社区 发布时间: 20190403
...submit? var tempSubmit:Submit = Submit.createShape(context, mIBBuffer, mVBBuffer, mEleNum, _indexStart, Value2D.create(ShaderDefines2D.SKINMESH, 0)); transform || (transform = Matrix.EMPTY); transform.t...
来源: Laya_社区 发布时间: 20190628
...BBB() { 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
...th+"地图"); } Sprite3D.load(path,Handler.create(null,function(sp){ if(_$this.PRINT_LOG){ console.log("加载单张地图完成"+curIndex); } sp.active=false; 在s...
来源: Laya_社区 发布时间: 20191011
...a.stage.bgColor='#EEFFCC'; Laya.loader.load("res/atlas/comp.json", Handler.create(this, onAssetLoaded), null, Loader.ATLAS); //添加UI界面 function onAssetLoaded() { Laya.stage.addChild(new TestUI()); } 附件 : --> ButtonClickDemo.rar 2017-05-13 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20170513
...eGPUCompression/Conventional/"; Laya.Scene3D.load("scene.ls", Laya.Handler.create(.......)); ```
来源: Laya2.0_文档 发布时间: 20210714
...eGPUCompression/Conventional/"; Laya.Scene3D.load("scene.ls", Laya.Handler.create(.......)); ```
来源: Laya2.0_文档 发布时间: 20210715
...完成后获取json的数据,如下 Laya.loader.load("aaa.json",Handler.create(this,onLoaded),null,Loader.JSON); } private function onLoaded():void { var js:JSON=Laya.loader.getRes("aaa.json"); trace(js); }2、你如果是想使用file读取文件的方式,这个目前layaAir下不支持,需...
来源: Laya_社区 发布时间: 20170620
...,不能加return json;参考例子:Laya.loader.load("1.js",Handler.create(this,function(data:*):void{ Browser.window.eval(data); var obj = __JS__('json'); trace("ddd"); }),null,Loader.TEXT); 2016-11-02 0 0 分享 微博 QZONE 微信 Wx122065323 赞同来自: 虽然用这种方法能够获...
来源: Laya_社区 发布时间: 20161102