大约有 59 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0035 秒)
...造函数的__super.call(this)以及调用基类方法的laya.ui.Component.prototype.onCompResize.call(this);在2.0是怎么写的 语言:js 2019-03-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被...
来源: Laya_社区 发布时间: 20190322
...anelUI,'ui.abc.ABCPanelUI',_super); var __proto__=ABCPanelUI.prototype; __proto__.createChildren=function(){ laya.ui.Component.prototype.createChildren.call(this); this.createView(ABCPanelUI.uiView); ...
来源: Laya_社区 发布时间: 20161017
...loading100,'loading100',_super); console.log("kk6") var __proto=loading100.prototype; console.log("kk7") __proto.cleanMe=function(){ this.load.destroy(true); } console.log("kk8") loading100.FINISH="FN"; console.log("kk9") return loading100; })(Sprite) //class ui.loadingjzaUI extends laya.ui.View var...
来源: Laya_社区 发布时间: 20170725
...tRotate", Laya.Script); //这是什么意思有什么作用 ObjectRotate.prototype._initialize = function (owner) { var _this = this; ObjectRotate.__super.prototype._initialize.call(this,owner); //在this(调取本函数的的对象)作用域内,侦听mousedown(...
来源: Laya_社区 发布时间: 20170810
...); this.x = 0; } Laya.class(CmpScript, "CmpScript", Laya.Script) CmpScript.prototype._initialize = function (owner) { var _this = this; CmpScript.__super.prototype._initialize.call(this, owner); } CmpScript.prototype._update = function (state) { CmpScript.__super.prototype._update.call(this, state);...
来源: Laya_社区 发布时间: 20161126
...function Class() { Class.super(this); // this定义.. this.init(); } Class.prototype.init = function() { console.log(this); }; return Class; })(); } var __extends = (this && this.__extends) || function(d, b) { for (var p in b) { (b.hasOwnProperty(p)) && (d[p] = b[p]); } function __()...
来源: Laya_社区 发布时间: 20170619
... var t1 = (function () { function 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....
来源: Laya_社区 发布时间: 20180104
...uper.call(this); } CLASS$(testUI,'ui.testUI',_super); var __proto__=testUI.prototype; __proto__.createChildren=function(){ laya.ui.Component.prototype.createChildren.call(this); this.createView(testUI.uiView); } testUI.uiView={"type":"Dialog","props":{"width":266,"height":720},"child":[{"type":"Imag...
来源: Laya_社区 发布时间: 20180325
...c(super.x,super.y, now); 被编译成addFootPrintMagic(laya.display.Sprite.prototype.x,_super.prototype.y,now); 下面是我写的测试代码,也被编译错了. trace(super.x,super.y); 被编译成了console.log(laya.display.Sprite.prototype.x,Laya.superGet(GameUnit,this,'y')); 而且我附件...
来源: Laya_社区 发布时间: 20190311
... 1.7之前的转换 __getset(0,__proto,'visible',function(){ return _super.prototype._$get_visible.call(this); },function(value){ _super.prototype._$set_visible.call(this,value); if (value) this._mcAni.removeFromParent(); }); 2018-02-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20180227