大约有 515 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(424) Laya2.0_文档(51) Laya2.0_示例(16) Laya_示例(12) Laya3.0_文档(6) laya_api(2) Laya3.0_api(2) Laya2.0_api(2)
scene3D第二次通过 Laya.Loader.getRes获取时,已经并非初始的scene3D,该如何处理?谢谢 预加载3D场景,当关卡一通过Laya.Loader.getRes获取scene3D后,并对该scene3D进行了一定的操作,那么,关卡二在此想使用该scene3D时,Laya.Loader.getRes方...
来源: Laya_社区 发布时间: 20200519
网络加载贴图,Laya.loader.getRes(url) 不显示贴图 通过Laya.loader.getRes(url),url地址为https://oss.arplus.top/arplus/ ... 9.jpg,想替换材质球的贴图,但是没有显示出来,具体看截图。 正常undefined的地方应该显示贴图的地址,但是为什么没有...
来源: Laya_社区 发布时间: 20200917
玩一玩json混淆,导致安卓不能Laya.loader.getRes到数据 玩一玩json混淆,导致安卓不能Laya.loader.getRes到数据 2018-06-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来...
来源: Laya_社区 发布时间: 20180611
请问在微信小游戏中Laya.loader.getRes取不到图集资源是怎么回事呀?h5版本正常 在微信小游戏中使用Laya.loader.load成功加载了图集,然后使用Laya.loader.getRes取不到图集资源。h5版本正常。 初步测试是因为加了版本号的原因 2018-12-1...
来源: Laya_社区 发布时间: 20181213
getRes加载场景报错 Laya.loader.load("LayaScene_04_laya/04_laya.ls",Laya.Handler.create(this,this.on3DComplete)); 在load3D资源后分别用两种方法实例化场景报错 //1.实例化场景 that.scene = Laya.loader.getRes("LayaScene_04_laya/04_laya.ls") as Laya.Scene3D; Laya.stage.addC...
来源: Laya_社区 发布时间: 20190624
...看下上面的链接! JianHao • 2017-04-18 10:59 //加载图集 Laya.loader.load("res/atlas/hero.json",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) //先把四张小图拿出来 var hero_down1=Laya.loader.getRes("hero/hero_down1.jpg"); var hero_down2=Laya.loade...
来源: Laya_社区 发布时间: 20170330
...下: var resources = [ { url: "res/atlas/images/guide.atlas", type: Laya.Loader.ATLAS }, { url: "config/data.txt", type: Laya.Loader.BUFFER }]; Laya.loader.load(resources, Handler.create(this, this.onComplete), Handler.create(this, this.onProcess), null, 1, false); } onComplete(e,a,b) { console.lo...
来源: Laya_社区 发布时间: 20180816
js环境下使用Loader加载图片在Sprite对象的.on函数无效 js环境下使用Loader加载图片在Sprite对象的.on函数无效 var tempnote = new Laya.Sprite(); 使用 tempnote.texture=Loader.getRes(tempjson.pic)后 tempnote.on函数不触发 使用tempnote.loadImage(tempjson.pic); 触...
来源: Laya_社区 发布时间: 20171024
...载一个txt文件 getRes出来类型为string 能转换成数组吗 Laya.loader.load("res/text.txt", Handler.create(this, onAssetLoaded1), null, Loader.TEXT); var pic1 = Loader.getRes("res/2D特效/text.txt"); console.log(typeof pic1); 输出的类型为string 2017-06-20 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20170620
...的语句加载资源,每次加载完成后回调loadselectanimation Laya.loader.load(picurl,Handler.create(this, this.loadselectanimation,arrr),null,Loader.ATLAS); 现在的问题是,同一个资源第二次加载的时候,就不执行回调函数了. 是不是第一次加载以后有缓存了,第...
来源: Laya_社区 发布时间: 20171103