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

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

321. Laya同时加载图片和引用图片的资源时会报错 [ 86%]

...错 Laya同时加载图片和引用图片的资源时会报错,应该是Loader那边Event.COMPLETE事件的问题            Laya.loader.create([             { url: "res/Sword 10 Blue Gold.lmat", type: Laya.Loader.MATERIAL},             { url: "res/Sword...

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

322. 求助高手请进,关于场景导入的问题~ [ 86%]

...景导入的问题~ 正常的场景加载这样就能加载出来了Laya.loader.create("LayaScene_01/loveScene.ls",Handler.create(this,this.completeHandler)); private function completeHandler():void{     var scene:Scene = Laya.loader.getRes("LayaScene_01/loveScene.ls");     Laya.stage.addChild(s...

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

323. LayaFlash针对资源的加载是同步还是异步? [ 86%]

...通过预加载方式解决这个问题。 package { import flash.display.Loader; import flash.display.LoaderInfo; import flash.display.Sprite; import fash.display.StageAlign; import flash.display.StageScaleMode; import flash.events.Event; import flash.net.URLRequest; public class Main extends Sprit...

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

324. 纹理截取后内存释放不了 [ 86%]

...了 private var oriDBArr:Array = null;//位图源 var tex:Texture = Laya.loader.getRes(_url); for (var i:int = 0; i < list1["oriBDPos"].length; i++ ) { var g:Graphics = new Graphics(); var t:Texture = Texture.createFromTexture(tex, posObj.x, posObj.y, posObj.w, posObj.h); g.drawTexture(t, 0, 0); ...

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

325. Laya.SoundManager.playSound 无法播放出音效 [ 86%]

...不能正常播放,也没有任何错误提示 然后尝试先调用Laya.loader.load("sfx/hit01.mp3",new Laya.Handler(this,this.onBgmComplete),null,Laya.Loader.SOUND);然后在onBgmComplete的回调里面再调用播放,就会提示 [warn]Retry to load: sfx/hit01.mp3 [error]Failed to load: sfx/h...

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

326. 二进制文件打包后,读取不到zip包内的文件 [ 86%]

...要代码如下    let loaditem = [{ url: "test.zip", type: Laya.Loader.PLFB }]         Laya.loader.load(loaditem, Laya.Handler.create(this, function (res) {             let item = 'res/layabox.png'             let getres = Laya.loader.getRes(item...

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

327. 【BUG】加载的url中有错误url时,laya偶现加载complete不回调 [ 86%]

... { url: this.zombie_anim_path4 }, { url: this.zombie_anim_path5 }, ]; Laya.loader.retryNum = 0; Laya.loader.create(res3DArr, Laya.Handler.create(this, this.onRes3DLoaded), null);   结论:onLoad时checkNext触发endLoad,会重置customParse属性,onError的时候没有触发这个逻辑,导...

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

328. 更新到1.5.4的问题 [ 86%]

更新到1.5.4的问题 用Laya.loader加载报错:RangeError: Maximum call stack size exceeded 出现情景:关卡选择界面进入到游戏界面时,用Laya.loader加载了很多游戏资源,游戏结束后,返回到关卡选择界面前,通过Laya.loader.clearres接口清理了游戏相...

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

329. Sprite-切换纹理 [ 86%]

...tage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.flag = true; Laya.loader.load([monkey1Str, monkey2Str], Laya.Handler.create(this, this.onAssetsLoaded)); } onAssetsLoaded() { monkey1Res = Laya.loader.getRes(monkey1Str), monkey2Res = Laya.loader.getRes(monkey2Str); this.ape = new Laya.Sprite(...

来源: Laya2.0_示例 发布时间: 20241118

330. 资源销毁问题疑问 [ 86%]

...场景切换的时候 如何把当前场景下的资源销毁掉呢 Laya.loader.clearTextureRes("res/fighter.atlas") 这一步 销毁的是图集所保护的所有资源吗?还是说 需要 把所有用到的小图地址都销毁一遍 比如 Laya.loader.clearTextureRes("res/re1.jpg"); Laya.loader...

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