大约有 127 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
... Laya.MiniAdpter.init(true, true); //程序入口 Laya.init(750, 1334); onLoaded(); /* //激活资源版本控制 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad(){ Laya.loader.load("res/atlas/...
来源: Laya_社区 发布时间: 20180507
...相关的链接 提交 1 个回复 魏飞黄 赞同来自: 这个问题是onload在对象被销毁后仍然在监听纹理的加载成功事件,加载成功后,访问被销毁的对象导致报错,对象在被销毁时没有清理干净事件导致的,目前我是这么改的: 在laya.html.js内938...
来源: Laya_社区 发布时间: 20180808
...加到舞台 Laya.loader.load("./res/atlas/ui.atlas",Handler.create(this,onLoaded)); } private function onLoaded():void { //实例导出的UI类 var efc:EffectAnimationDemoUI = new EffectAnimationDemoUI(); //添加到舞台 Laya.stage.addChild(efc); } } } ``` 运行后,按钮被按下时,动画...
来源: Laya2.0_文档 发布时间: 20210715
...了 就说明 腾讯那边已经注入成功了。 他们提供了一个 onLoad的方法 但是这个方法在ios端 没有起作用。我也不知道为啥。 目前最笨的方法就是。启动time 查找这个全局的变量是否存在 。存在后再获取openid
来源: Laya_社区 发布时间: 20180417
...on") Laya.loader.load("res/ui/share@atlas0.png", Handler.create(this, this.onLoaded), null, Loader.IMAGE, 1, true, null, true) } static onLoaded(res){ console.log("public assets inited !!!!") console.log(Laya.loader.getRes("res/ui/share@atlas0.png"))//此处会报循环引用错误,也就Android...
来源: Laya_社区 发布时间: 20180609
...][url=){]){ var tempData=MiniFileMgr.ziyuFileData[/url][url=;]; thisLoader.onLoaded(tempData); return; } if (!MiniFileMgr.getFileInfo(url)){ if (MiniFileMgr.isLocalNativeFile([b]url[/b])){[/url] 改为[url=;] var urlType=Utils.getFileExtension(url); if ((MiniLoader._fileTypeArr.indexOf(urlType)!=-1)...
来源: Laya_社区 发布时间: 20190403
.../background.png", "res/m_background.png"], laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); //加载进度 function onLoading(progress){ console.log("onLoading: " + progress); } //加载完毕 function onLoaded(){ console.log("onLoaded"); } 我们...
来源: Laya_社区 发布时间: 20160722
...l: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void { Laya.loader.load("res/comp/dian.part", Handler.create(this, this.onPartLoaded)); } function onPartLoaded(data: any) { let part = new Laya.Particle2D(data); part.emit...
来源: Laya_社区 发布时间: 20170803
....json", type: Laya.Loader.BUFFER } ], Laya.Handler.create(this, this.onLoaded)); } onLoaded(): void { console.log('===================ss'); console.log('sssss', fgui.GRoot.inst.displayObject); Laya.stage.addChild(fgui.GRoot.inst.displayObject); fgui.UIPackage.add...
来源: Laya_社区 发布时间: 20191030
...hods MethodDefined By complete(data:*):void 加载完成。 Loader onLoaded(data:* = null):void 资源加载完成的处理函数。 LoaderEvents Event Summary Defined By complete加载完成后调度。Loader error加载出错时调度。Loader progress加载进度发生改变时...
来源: Laya2.0_api 发布时间: 20190513