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

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

161. 载入场景报错 [ 71%]

...a.stage.alignV = Laya.Stage.ALIGN_MIDDLE; console.log("load"); Laya.loader.create("TestScene/TestScene.ls", Laya.Handler.create(this, this.LoadSceneComplete)); } LoadSceneComplete() { console.log("finish") let scene: Laya.Scene = Laya.loader.getRes("TestScene/TestScene.ls") as Laya.Scene; // scene.e...

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

162. 使用Laya.loader.load加载服务上的图片资源,为什么会停顿几秒中才显示 [ 71%]

...才显示 Laya.loader.load("http://www.xxxxxxx.com/gold.png",Laya.Handler.create(this,this.aa)); private aa(){ let img = new Laya.Image("http://www.xxxxxxx.com/gold.png"); Laya.stage.addChild(img); } 请问下,这样写有声明不对么 ? 2018-04-18 添加评论 免费帖 --> 分享 微博...

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

163. Laya.load在OPPO小游戏端无法加载带有不安全字符的图片网址 [ 71%]

...tps://lupic.cdn.bcebos.com/2 ... 3B%3B Laya.loader.load(_url, Laya.Handler.create(this, res => { let a = new Laya.Image(_url); Laya.stage.addChild(a); })) 以下是安卓层面输出日志:09-22 11:08:10.811 27895-28111/? D/jswrapper: JS: [WARN]: [warn]Retry to load: https://lupic.cdn.bcebos.co...

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

164. 导出类型为文件模式时,只能是通过Laya.Scene.load的加载返回传递的参数得到视图对象么? [ 71%]

...赞同来自: 怎么实例化? Laya.loader.load("xxx.json", Laya.Handler.create(this, this.onCompleteCall), .....);   let xxx:View = ? 这里怎么实例化这个 xxx.json为视图对象? 2018-10-30 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登...

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

165. 资源压缩成zip后加载的问题 [ 70%]

...,那就不用处理了。 Laya.loader.load("res/aaa.scene", Laya.Handler.create(null, (content)=>{console.log(content)})); Laya.loader.load("res/bbb.json", Laya.Handler.create(null, (content)=>{console.log(content)})); 2019-04-25 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复...

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

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

... 微博 QZONE 微信 hejianchun 赞同来自: 3D的用这个 Laya.loader.create()接口; 2018-03-23 0 5 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 joshua0526 相关问题 关于微信小游戏关系链的问题 【屏幕适配】在Laya...

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

167. 加载不同域名下的单个图片 会重复加载两次,导致无法显示 [ 70%]

...age_url+"image/loading.jpg", ]; Laya.loader.load(_silentLoadArray, Handler.create(this, gameStart));   var gameStart = function(){     var loading = new LoadingPage();(loading页面)     //加载完成 进入主界面     loading.onComplete = loadHome;     //开始加载     loading.s...

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

168. 请问一下怎样动态加载prefab [ 70%]

...查找了一些做法  1.    let box: Laya.Sprite = Laya.Pool.getItemByCreateFun("dropBox", this.dropBox.create, this.dropBox); 这个会在create的时候报错 2. prefab:Prefab = Laya.Load.getRes("prefab/xxx"); 这个获取prefab直接就是个空   请问一下 这个到底是怎么写才能...

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

169. 粒子中引用的图片能合图吗 [ 70%]

....loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void {     Laya.loader.load("res/comp/dian.part", Handler.create(this, this.onPartLoaded)); } function onPartLoaded(data: any) {     let part = new Laya.Particle2D(data)...

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

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

...错。 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)         }),null,Laya.Loader.IMAGE);    这段代码, ...

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