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

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

81. 如何获取实时更新的动态数据,数据在文本中 [ 79%]

...yeimf.txt",type:Laya.Loader.TEXT} ] Laya.loader.load(resArray,Laya.Handler.create(this,this.Onloaded),null,Laya.Loader.TEXT,0,true,null,true);*/ let event1=Laya.loader.load("eyeimf.txt", Laya.Handler.create(this, this.Onloaded), null, Laya.Loader.TEXT,0,true,null,true); //console.log(Laya.Loader.loa...

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

82. 显示与切换图片(JavaScript-LayaAir基础篇(JS)-位图) [ 79%]

....stage.bgColor = "#232628"; Laya.loader.load([texture1, texture2], Handler.create(this, onAssetsLoaded)); })(); function onAssetsLoaded() { ape = new Sprite(); Laya.stage.addChild(ape); ape.pivot(55, 72); ape.pos(200, 200); // 显示默认纹理 switchTexture(); ape.on("click", this, switchTexture);...

来源: Laya2.0_文档 发布时间: 20210715

83. 分享:can not create:Dialog ! [ 79%]

分享:can not create:Dialog ! 有时候我们会在一个View界面里用到Dialog组件,但是当addChild该Dialog组件所在的界面时,在调试控制台会提示一句:can not create:Dialog,,,这个是因为我们未对Dialog组件进行注册导致的 修改方式,在该di...

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

84. protobuffer加载失败 [ 78%]

...件失败:     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/ProtobufLoadTest/bin/res/protobuf/user.proto 但是去掉方...

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

85. Laya.loader.create 进度回调函数执行两次 [ 78%]

Laya.loader.create 进度回调函数执行两次 Laya.loader.create(["Main/SMain.ls","Role/Role.lh"],Laya.Handler.create(this,this.on3DComplete),Laya.Handler.create(this,this.onProgress,null,false)); Manager.prototype.onProgress = function(value) { console.log("value=="+Math.floor(value*100)+"%");...

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

86. IOs使用手动删除本地资源再次进去加载问题 [ 78%]

...bar.png", type : Laya.Loader.IMAGE}, ] Laya.loader.load(res_array, Handler.create(null, onLoaded)); } function onLoaded() { var res_array = [ {url : "res/atlas/comp.atlas", type : Laya.Loader.ATLAS}, ] Laya.loader.load(res_array, Handler.create(null, onLoaded2)); } function onLoaded2() { Laya.stage....

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

87. 在UI类里调用启动类的静态函数失败了 [ 78%]

...}, { url: "res/atlas/comp.atlas", type: Laya.Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded), Laya.Handler.create(this, this.onLoading)); } static aaa(): void { } private onLoaded(): void { var info = new view.GameInfo(); info.zOrder = 99;//置最顶,这句话不写图层看不见 // info....

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

88. ani如何实现预加载呢? [ 78%]

...一半.  附代码: Laya.loader.load("res/atlas/res.json", Laya.Handler.create(this, onLoaded), Laya.Handler.create(this, onLoading), Laya.Loader.ATLAS); 我是在onLoaded里面用游戏资源的.... 2017-07-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请...

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

89. JS里面定义一个函数,无法使用Laya.Handler.creat回调 [ 78%]

JS里面定义一个函数,无法使用Laya.Handler.creat回调 代码运行到Laya.Handler.create时候提示onTxtLoad is undfine.请教应该怎么定义? export default class LocalTxt{ constructor() { LocalTxt.Instance = this; } onTxtLoad(aText){ console.info("dfasd"); } initTxt(){ Laya.load...

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

90. 粒子-粒子演示1 [ 78%]

....bgColor = "#232628"; Stat.show(); Laya.loader.load(partPath, Laya.Handler.create(this, this.onAssetsLoaded), null, Loader.JSON); } onAssetsLoaded(settings) { // 当load数组的时候,回调函数传入的参数不再是资源,可以通过以下方法获取资源 // let settings = Laya.loader.g...

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