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

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

121. 使用外部引擎播放layaair制作的.ani [ 73%]

...lientHeight * 2); Laya.loader.load('./card/atlas/card.atlas', Laya.Handler.create(this, onLoaded)); function onLoaded() { //创建一个Animation实例 var tl = new Laya.Animation(); //加载动画文件 tl.loadAnimation("./card/card.ani"); //添加到舞台 Laya.stage.addChild(tl); //播放Animatio...

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

122. 怎么加载网络上的图片 [ 73%]

...为:http://image.xxx.com/ 2. 使用Laya.loader.load("1.png",Laya.Handler.create(this,this.complete)); 3.//加载完成回调处理 complete():void{} 2018-05-17 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 sogetsu 相关问题 请问L...

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

123. 为什么加载进度回调只调用了一次。下面有代码,求解答 [ 73%]

...er.ATLAS}].concat(loadArr),     // 加载完成回调     Laya.Handler.create(null,function(){         var logintest = new loginTestView().init();         Laya.stage.addChild(logintest);     }),     // 加载进度回调 {???为什么只调用了一次 || 进度不是持续调...

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

124. 游戏资源加载问题! [ 73%]

...这行代码: Laya.loader.load("res/atlas/Skill/Skill_1001.json",Handler.create(this,onAssetLoaded),null,Laya.Loader.ATLAS); 你没有给资源加载完成的回调,资源的后缀也错了,应该是Loader.ATLAS,你少了一个Loader   多个图集的话建议放到一个load里边进行加...

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

125. 怎么在api中找到 Laya.loader.load [ 73%]

...找到 Laya.loader.load Laya.loader.load("res/atlas/war.json",Laya.Handler.create(this,this.onloaded),null,Laya.Loader.ATLAS); 这一句,我想找一下Laya.loader.load的使用说明和使用例子,但是不知道怎么找。在api里我开了Laya。 http://layaair.ldc.layabox.com/api/index.htm...

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

126. 急急急,如何设置按钮点击加载ani [ 73%]

...//激活资源版本控制 ResourceVersion.enable("version.json", Handler.create(this, beginLoad), ResourceVersion.FILENAME_VERSION);         }                  private function beginLoad():void {             //加载引擎需要的资源             L...

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

127. 加载unity导出场景失败 [ 73%]

...WDT/bin/main/SMain.ls) extension with: ls.     at LoaderManager.__proto._create (file:///E:/LayaAir/ZJKZWDT/bin/libs/laya.core.js:12981:11)     at LoaderManager.__proto.create (file:///E:/LayaAir/ZJKZWDT/bin/libs/laya.core.js:12969:21)     at Function.Scene.load (file:///E:/LayaAir/ZJKZWDT/bin...

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

128. 图集资源clearRes清除之后下次再用到load时加载失败 [ 73%]

...oid { Laya.loader.load([{ url:url, type: Laya.Loader.ATLAS }],Laya.Handler.create(this,this.Loa,null)); } private Loa():void { console.log("在又有意义有意义有意义有意义有意义有意义有意义有意义"); } public ClearImg(url:string):void { Laya.Loader.clearRes(url); } 2018-01-09 ...

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

129. 骨骼动画文件.sk 怎么用Laya.loader.load去预加载 [ 73%]

...: 可以预加载,试下下面的方式:Laya.loader.load(url, Handler.create(this, onComplete), null, Loader.BUFFER); 2017-05-05 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 hhj2357620 相关问题 2.0一不小心删了bin目录下...

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

130. 预加载音频文件遇到的问题 [ 73%]

...声音资源 Laya.loader.load("res/sound/bloodstream_bg.mp3", Laya.Handler.create(this, onLoadedSound), null, Laya.Loader.SOUND); // })(); function onLoadedSound(){ Laya.SoundManager.playMusic("res/sound/bloodstream_bg.mp3", 0, Laya.Handler.create(this, onComplete)); } function onComplete(){ console...

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