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

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

101. Laya.loader.create 进度回调函数执行两次!!! 上次发问题一直没有回复 [ 56%]

...3DComplete),Laya.Handler.create(this,this.onProgress,null,false)); Manager.prototype.onProgress = function(value) { console.log("value=="+Math.floor(value*100)+"%"); }   输出结果: 0.19186599730944645 0.5251993306427798 1 0.5002049180327869 0.5626793032786885 0.6251536885245902 0.6876280737704...

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

102. 关于substr 建议 [ 56%]

...:   let color='#FFFFFF'   原生: color.substr(0,0) -> ''; String.prototype.substr = Laya.__substr : color.substr(0,0) -> '#FFFFFF'   覆盖String 的substr 使一些需要取空值的操作没有了,对于第三方类库使用了原生substr的时候会有干扰。   建议建立独...

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

103. dialog第一次可以正常调出,第二次无法正常popup出来 [ 55%]

...ddChild(loginView);     } LoginView.js中的init函数     LoginView.prototype.init = function () {         this.btnReg.on(Laya.Event.CLICK, this, this.onBtnReg);         this.btnLogin.on(Laya.Event.CLICK, this, this.onBtnLogin);         this.dlg = new NormalDialog();   ...

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

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

...b.json"] = zipData["res/bbb.json"]; // 设置数据 let func = Laya.Loader.prototype["parsePLFData"]; func.call(Laya.Loader, data); // 要先加载一遍,才能使用。基本底层都是调用的loader,那就不用处理了。 Laya.loader.load("res/aaa.scene", Laya.Handler.create(null, (content...

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

105. 选择压缩混淆 JS发布项目,protobuf解析报错 [ 55%]

...错   skipType的wireType只有5个类型,为什么会报6     Reader.prototype.skipType = function(wireType) { switch (wireType) { case 0: this.skip(); break; case 1: this.skip(8); break; case 2: this.skip(this.uint32()); break; case 3: do { // eslint-disable-line no-constant-condition if ((wi...

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

106. 自定义对话框设置zOrder后,关闭时报错 [ 55%]

...Bar, "CountdownBar", CountdownUI); return countdownBar; }()); CountdownBar.prototype.countdown = function () { this.count--; if (this.count > 0) { this.countLabel.text = '' + this.count; } else { Laya.timer.clear(this,this.countdown); this.destroy(true); } }这是一个继承自laya.ui.Dialog的...

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

107. 加载-销毁Texture使用的图片资源 [ 55%]

.../显示性能统计信息 Stat.show(); } /** * 初始化场景 */ GameMain.prototype.init = function () { //创建背景 this.spBg = Sprite.fromImage(this.PathBg); Laya.stage.addChild(this.spBg); //创建动画 this.aniFly = new Animation(); this.aniFly.loadAtlas(this.PathFly); this.aniFly.play(); t...

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

108. 请问如何使我的自定义类UIDropBox继承Laya.Sprite? [ 55%]

...ddChild(this.txt); } Laya.class(UIDropBox, "UIDropBox", Sprite); UIDropBox.prototype = { getTextFeild: function () { var text = new Text(); text.overflow = Text.VISIBLE; text.color = "#FFFFFF"; text.fontSize = 20; return text; } } return UIDropBox; })(); 请问如何使我的自定义类UIDropBox继...

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

109. 代码创建精灵监听不到事件? [ 55%]

...ya.Event.MOUSE_UP,this,this.onclick,[arr]);   var _proto = StorageUILayer.prototype;   _proto.onclick = function(params){ console.log("--------------------------------hhhhhhhhhhh- "); }   ---------------------------------------------------------- 麻烦看下,这个为何监听不到点击的...

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

110. HttpRequest详解(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 55%]

...nsion, 'HttpRequestExtension', _super); var __proto = HttpRequestExtension.prototype; __proto.send = function (url, data, method, responseType, headers) { (method === void 0) && (method = "get"); (responseType === void 0) && (responseType = "text"); _super.prototype.send.call(this, url, data, method...

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