大约有 972 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0064 秒)
...unction t1(b) { this.b = b; } //父类方法a t1.prototype.a = function(){ console.log(this.b.x+""+this.b.y); } return t1; }()); ========================= /* * t2继承父类t1 */ var t2 = (function () { function t2() { t2.super(); } t2.prototype.a = function(){ console.log('2222'); } return t2; ...
来源: Laya_社区 发布时间: 20180104
...@param node 节点 */ base_remove(node){ if(node.numChildren<=0)return; console.log('移除',node.name); let obj; for(let i=node.numChildren-1;i>=0;i--){ obj= node.getChildAt(i); obj.destroy(); } } 或者 /* 从舞台移除模型对象 @param node 节点 */ base_remove(node){ if(node.numChi...
来源: Laya_社区 发布时间: 20191119
...fo,content){ var url=resInfo.url; //输出//////////////////////////////// console.log("url:"+url); content==null?console.log("content null"):console.log("content not null"); //输出//////////////////////////////// if (content==null){ var errorCount=this._failRes[url] || 0; if (errorCount < this...
来源: Laya_社区 发布时间: 20200429
...// 程序入口 class GameMain{ constructor() { Laya.init(600,400, WebGL); console.log("Before In One, Time = " + Date.now()); Laya.timer.once(1,this,this.One) console.log("After In One, Time = " + Date.now()); } One():void{ console.log("In One, Time = " + Date.now()); } } new GameMain(); 控制...
来源: Laya_社区 发布时间: 20190827
...OR,this,this.onError); //数据传输失败后返回 //post数据的写法 console.log(JSON.stringify(request)); this.http.send(url,JSON.stringify(request), 'post', 'text',["content-type","application/json"]); } function onProgress(e) { console.log("run onProgress"); } function onComplete(e) { conso...
来源: Laya_社区 发布时间: 20180315
...Laya.Browser.clientHeight){ console.log("横屏",this.lastClientWidth); if(Laya.stage.scaleMode != Laya.Stage.SCALE_SHOWALL){ Laya.stage.scaleMode = La...
来源: Laya_社区 发布时间: 20190514
...始读入byte中。省略其中的浮点数20.0和整数16 byte.pos = 0;// console.log(byte.readUTFString())//从byte中读出字符串。 ``` - 读取数据 **getByte**():number在字节流中读一个字节。 **getInt16**():number在当前字节偏移量位置处读取 Int16 值。 **getInt32**()...
来源: Laya2.0_文档 发布时间: 20210714
...本的使用问题 class ScaleButton { constructor() { console.log("加载ScaleButton"); } private _owner: any; public set owner(o: laya.display.Sprite) { this._owner = o; console.log("设置owner"); } public get owner(): laya.d...
来源: Laya_社区 发布时间: 20170601
... super(); } public onAwake():void{ console.log(1111); } } 2.继承Sprite 执行后会有onAwake let t = new tt(); Laya.Scene.root.addChild(t); } } //激活启动类 new Main(); class tt extends Laya.Sprite{ ...
来源: Laya_社区 发布时间: 20190701
... { my.redirectTo({ url: "/subpackage1/page2/index", success: function () { console.log("success") }, fail: function (err) { console.log("2222", err) } }) } ``` 注意:在加载资源的时候,分包文件夹名称前也需要加“ / ” #### 2.2 资源分包 资源分包适合页面数量较多...
来源: Laya2.0_文档 发布时间: 20210715