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

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

391. 不存在的资源路径问题 [ 73%]

...,导致这个问题是因为没有资源也调用了加载完成, Laya.loader.on(Laya.Event.ERROR, this, this.onLibError); Laya.loader.load([{ url:com.globals.GameConfig.XML_LIB_URL, type:Loader.BUFFER }], Handler.create(this, this.onLibLoaded)); 资源是不存在的,然后还是调用了 thi...

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

392. 每次发布都会自动更新 index.html 吗? [ 73%]

每次发布都会自动更新 index.html 吗? <script src='music.js' loader='laya'></script> <script src='snow.js' loader='laya'></script> <script src='index.max.js' loader='laya'></script> 我在index.html导入的music.js和snow.js包,每次发布时都要...

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

393. Laya.Sprite3D.load机制bug [ 73%]

...ash起,就一直存在的bug 1.7.20beta有bug,帧属性面板打不开 Loader.load加载json类型的资源,完成后调用Loader.clearRes后,并不能真正释放资源的bug EffectAnimation Bug image loadimage 加载网络图片BUG 2.3.0发布微信小游戏,自动缓存:查找不到...

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

394. 关于stage的size问题 [ 73%]

...scaleMode = Laya.Stage.SCALE_NOSCALE; // Laya.stage.size(6000, 6000); Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded)); function onLoaded(): void { var sprite = new Laya.Sprite(); sprite.loadImage('comp/bg.png'); Laya.stage.addChild(spr...

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

395. 关于如何解析远程.xml文件的问题 [ 73%]

...取文件的话,你不用发送请求就可以,你可以直接用Laya.loader.load("http://192.168.1.21:90/Game_Config.xml",Handler.create(this,onLoadered)); public function onLoadered(data:*):void { trace("data:" + data); }  来完成文件的加载,在文件加载完会返回xml的内容信...

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

396. unity导出的场景不显示实时阴影 [ 73%]

...tePlane(10, 10))) as Laya.MeshSprite3D; plane.meshRenderer.material = Laya.loader.getRes('sences/Assets/Scenes/TestPro/Materials/Dana.lmat'); plane.meshRenderer.receiveShadow = true; plane.transform.translate(new Laya.Vector3(0, 0.1, 0), false);  let test: Laya.MeshSprite3D = scene.addChild(new Lay...

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

397. Texture自动恢复还是存在另外的问题 [ 73%]

...itmap || this._bitmap.destroyed)&& url){             Laya.loader.load(url,Handler.create(this,function(bitmap){                 _$this._bitmap=bitmap;             }),null,"htmlimage",1,false,null,true);         }     }   Laya.loader.load的cache参数...

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

398. 2.0版本,Particle2D is not a constructor [ 73%]

...rt default class RunMain extends Laya.Sprite{ constructor(){ super(); Laya.loader.load([{url:"res/213.part",type:Laya.Loader.JSON}],Laya.Handler.create(this,this.onAssetsLoaded)); } onAssetsLoaded(){ let pg = Laya.loader.getRes("res/213.part"); let pd = new Laya.Particle2D(pg); } }213.part是设计...

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

399. protobuffer加载失败 [ 73%]

...资源地址使用中括号 )加载 .proto 文件失败:     Laya.loader.load(["res/protobuf/user.proto"], Handler.create(this, onAssetsLoaded)); 错误提示如下: [warn]Retry to load: E:/LayaBox/ProtobufLoadTest/bin/res/protobuf/user.proto [error]Failed to load: E:/LayaBox/ProtobufLoadTe...

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

400. 微信资源加载问题 [ 73%]

... 我加载几十张图片,图片在外网服务器上面,然后我用loader加载 Laya.loader.load(resArr, Laya.Handler.create(null, function () { var a = new Laya.Image('comp/bg.png') Laya.stage.addChild(a) }), Laya.Handler.create(null, function (value) { console.log('加载进度:' + value) ...

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