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

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

501. load完成后能否获取到具体是哪个对象资源完成 [ 69%]

...s"); private LoadAsset(path: string): void { Laya.loader.create(path, Laya.Handler.create(this, this.OnAssetComplete)); } private OnAssetComplete(): void { console.log("on asset complete:"); } 我想在OnAssetComplete内知道是哪个资源被回调了,请问要怎样处理,是否有现成的...

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

502. 关于tiledmap.moveViewPort动画的问题 [ 69%]

...ya_Aaron 赞同来自: Tween.to(this,{x:40,y:50,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onUpdate)}) 大概长这个样子 2018-07-06 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 如果会用tween 就好办,  tween 里面有个 update 回调,...

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

503. 请问laya有没有类似翻页容器(pageView)的组件? [ 69%]

...ctor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { sup...

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

504. version.json版本文件会加载缓存的,看了源码也没有忽略缓存 [ 69%]

...urceVersion.type = type;             ILaya.loader.load(manifestFile, Handler.create(null, ResourceVersion.onManifestLoaded, [callback]), null, Loader.JSON);         } load没有设置忽略缓存   应该 static enable(manifestFile, callback, type = 2) {             ResourceVersion....

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

505. 1.6.2打包的图集不能使用 [ 69%]

... Laya.loader.load([{url: "res/atlas/longCard.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); 在onLoaded var textrue = Laya.loader.getRes(longcard/xxx.png)总是undedined。。。求解。。。 相关链接 : http://ask.layabox.com/question/486 图集打包出来没有prefix。。...

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

506. 分享:LayaAir下如何加载和使用.JSON文件! [ 69%]

...使用.JSON文件! package { import laya.net.Loader; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(500,400); Laya.loader.load("unpack.json",Handler.create(this,onLoaded),null,Loader.JSON); } private function onLoaded():void { var json:JSON=Laya.loa...

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

507. 关于ASTC使用问题和建议 [ 69%]

..."; 或者是 let tex = new Laya.Texture(); tex.load("ui/guide01.png", Laya.Handler.create(this, ()=>{   this.img.texture = tex; }));   但是如果使用ASTC纹理时就会报错,需要使用异步的方式来处理         Laya.loader.load("ui/guide01.ktx", Laya.Handler.create(this, (res...

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

508. 新版unity插件导出场景加载报错 [ 69%]

...1222) at Laya3D._onHierarchyInnerFirstLevResouLoaded (laya.d3.js:14496) at Handler.__proto.run (laya.core.js:1385) at onComplete (laya.core.js:14546) at Handler.__proto.runWith (laya.core.js:1400) 1.0的插件能导出场景并正常预览和使用 2018-12-18 添加评论 免费帖 --> 分享 微博...

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

509. 为什么list不能滑动,怎么让list滑动 [ 69%]

...极限距离。  this.gradeList.selectEnable = true; this.gradeList.selectHandler = new Laya.Handler(this, this.onSelect) this.gradeList.renderHandler = new Laya.Handler(this, this.updateItem) } 2019-05-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

510. app 的预加载问题 [ 69%]

...res/atlas/common.json","type":Loader.ATLAS}, ]; Laya.loader.load(resarray, Handler.create(this, this.preloadLoaded), Handler.create(this, this.onProgress,null,false)); 这个时候这个资源是通过app本地加载还是网上加载的? 2.dcc 有之前安装到手机上的app (a版本),后...

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