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

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

331. native环境下动态载入脚本并执行 [ 69%]

...本并执行。   ``` Laya.loader.load("http://118.17.23.1:9877/xxx.js", Handler.create(this, onLoad));//as3 ``` 2017-10-25 2 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 可以...

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

332. 头条小游戏二进制文件加载失败 [ 69%]

...tlas0_1.png", type:Laya.Loader.IMAGE},                   ], Laya.Handler.create(this, this.onLoaded));     调用这个方法后,头条游戏报错,二进制文件Bag.xml加载失败,微信是好的,经过逐步断点找到问题的位置 laya.wxmini.js    MiniFileMgr.fs.readF...

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

333. 加载.lh文件报错 [ 69%]

...js:15158) at Loader.Laya3D._onHierarchylhLoaded (laya.d3.js:15252) at EventHandler.__proto.runWith (laya.core.js:1126) at Loader.__proto.event (laya.core.js:882) at Loader.__proto.complete (laya.core.js:14965) at Loader.__proto.onLoaded (laya.core.js:14933) at EventHandler.__proto.runWith (laya.core...

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

334. UI-Tree [ 69%]

... Stage = Laya.Stage; var Tree = Laya.Tree; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.sc...

来源: Laya_示例 发布时间: 20241119

335. UI-Tree [ 69%]

... = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.st...

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

336. 模型资源异步加载和预加载 [ 69%]

...预加载,创建为Sprite3D类型 Laya.loader.create("res/room.lh",Laya.Handler.create(this,this.onCreateComplete)); //预加载完成后回调 private onCreateComplete():void{ //实例化加载并创建好的3D对象 var sprite3D:Laya.Sprite3D = Laya.loader.getRes("res/room.lh"); this.scene.addCh...

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

337. Image 动态替换图片后变小了 [ 69%]

...url:"map/157.jpg", type:Loader.IMAGE});      Laya.loader.load(assets, Handler.create(this, loadMapBGComplete));      function loadMapBGComplete():void{       var tx:Texture = Laya.loader.getRes("map/157.jpg");       this._test.source = tx;      }  我这张图是913X1400...

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

338. 异步加载一个UI对象时的问题 [ 69%]

...{ url: "view/MyView.json", type: Loader.JSON }, ] Laya.loader.load(assets, Handler.create(this, this.onLoaded)); } private onLoaded():void { this.createView(Laya.loader.getRes("view/MyView.json")); } } 因为加载是异步的,很有可能在加载过程中,用户或者其他行为逻辑已经...

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

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

...im_path5 }, ]; Laya.loader.retryNum = 0; Laya.loader.create(res3DArr, Laya.Handler.create(this, this.onRes3DLoaded), null);   结论:onLoad时checkNext触发endLoad,会重置customParse属性,onError的时候没有触发这个逻辑,导致复用这个loader时,customParse属性不正确...

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

340. 在 tiledmap 插入一个精灵在上面 [ 69%]

...t(800, 700, Laya.WebGL);   Laya.loader.load("res/atlas/images.atlas",Laya.Handler.create(this,this.onLoaded),null,Laya.Loader.ATLAS); }   onLoaded(){   console.info("onLoaded");   this.tiledMap = new Laya.TiledMap();   this.tiledMap.createMap("desert.json", new Laya.Rectangle(0, 0, Laya.stage.w...

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