大约有 164 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0033 秒)
...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
...: let color='#FFFFFF' 原生: color.substr(0,0) -> ''; String.prototype.substr = Laya.__substr : color.substr(0,0) -> '#FFFFFF' 覆盖String 的substr 使一些需要取空值的操作没有了,对于第三方类库使用了原生substr的时候会有干扰。 建议建立独...
来源: Laya_社区 发布时间: 20170130
...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
...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
...错 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
...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
.../显示性能统计信息 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
...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
...ya.Event.MOUSE_UP,this,this.onclick,[arr]); var _proto = StorageUILayer.prototype; _proto.onclick = function(params){ console.log("--------------------------------hhhhhhhhhhh- "); } ---------------------------------------------------------- 麻烦看下,这个为何监听不到点击的...
来源: Laya_社区 发布时间: 20171113
...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