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

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

141. 怎么加载网络上的图片 [ 76%]

...ang 赞同来自: 1.设置baseUrl为: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 个回复被折叠 要回复问题请先登录 发...

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

142. 设置遮罩(ActionScript-LayaAir基础篇(AS3)-位图) [ 76%]

...源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handler.create(this,graphicsImg)); } private function graphicsImg():void { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台...

来源: Laya2.0_文档 发布时间: 20210714

143. 3D场景脚本继承问题 (LayaAir 2.0.0) [ 76%]

...tional/CompleteMainScene_test.ls", clas:BattleScene} ];  //预加载 Laya.loader.create ( this.resArray, Laya.Handler.create(this,this.onPreLoadComplete), Laya.Handler.create(this,this.onProgress), );   }  onPreLoadComplete() : void { let sceneUrl = this.resArray[0]["url"];  this.scene = Laya.lo...

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

144. Laya.loader.load(xx) 当地址""的时候,会报错。 [ 76%]

Laya.loader.load(xx) 当地址""的时候,会报错。 laya 引擎是2.5的      Laya.loader.load(cg_url,Laya.Handler.create(this,()=>{             let tur:Laya.Texture = Laya.loader.getRes(cg_url);             if(tur)img_cg.graphics.drawImage(tur)        ...

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

145. ios load后 声音播放问题 [ 76%]

...; resurls.push({url:"http://192.168.6.132:8900/bin/comp/tap.mp3",type:Laya.Loader.SOUND});Laya.loader.load(resurls, Handler.create(this, onLoaded), Handler.create(this, onLoading, null, false)); function onLoaded(){ console.log(Laya.loader.getRes(src)); }   在chrome,安卓下都是正常的,...

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

146. 重复使用Laya.Sprite3D.load加载同一个lh类型的资源,发现第二次加载到的资源是无效的 [ 76%]

...内容相关的链接 提交 1 个回复 熊猫大侠 赞同来自:  Laya.Loader.getRes(Url) 2020-06-11 0 8 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 189*****909 相关问题 看了其他引擎才发现 LAYA 真的太太太太好用了...

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

147. 请问怎么监听在IDE中创建的UI中资源的加载进度呢 [ 76%]

...的加载进度呢 我在IDE中创建了整个游戏界面,然后通过loader去加载界面的配置文件:Laya.loader.load(['res/atlas/game.json'],Laya.Handler.create(this,Slot.onSourcesLoaded), Laya.Handler.create(this,Slot.onSourcesLoading,null,false),Laya.Loader.ATLAS);这样写似乎监听...

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

148. 微信小游戏报错 the .lh file root type must be Scene [ 76%]

...) at ResInfo.__proto.event (http://127.0.0.1:62629/game/code.js:483:28) at LoaderManager.__proto._endLoad (http://127.0.0.1:62629/game/code.js:13152:11) at Loader.onLoaded (http://127.0.0.1:62629/game/code.js:13128:10) at EventHandler.__proto.runWith (http://127.0.0.1:62629/game/code.js:711:59) at L...

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

149. Laya.loader.getRes [ 76%]

Laya.loader.getRes Laya.loader.getRes会报错,uri.indexof is not a function错误.代码如图所示 附件 : --> 2020-03-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 内容相关的链接 提交 2 个回复 awua 赞同来自: 你这个url就是...

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

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

...载音频的代码(JS飞机大战示例), //加载声音资源 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.cre...

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