大约有 94 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
关于TS get/set重写问题 我想对父类的 get/set方法进行重写,其作用是为了调用该方法前先做些处理 我父类A有个 public set a($value:number):void{ this._a = $value; } 然后继承父类后子类B重写 public set a($value:number):void { this.aa(); super.a =...
来源: Laya_社区 发布时间: 20180305
typeScript 在interface 接口中怎么用get set function get time():Number; function set time(value:Number):void; 类似于as3 中的这种写法。 2017-10-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Mon...
来源: Laya_社区 发布时间: 20171017
关于get/set重写问题 1.x中使用方法Laya.getset,2.x中应该使用哪个方法呢static getset(isStatic:Boolean, target:any, name:String, getter:Function, setter:Function):void; 2020-11-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...
来源: Laya_社区 发布时间: 20201118
如何调用父类get、set方法? 如何在子类中调用父类get、set方法? 2017-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 ymsdandan 赞同来自: 你试下LoginView.__super.call(this) ,...
来源: Laya_社区 发布时间: 20171108
... ProtoPool._dic = new Laya.Dictionary(); ProtoPool._dic.set(ProtoPool.PROTO_HEAD, new com.bigao.h5.proto.Head()); ProtoPool._dic.set(ProtoPool.PROTO_BINARY_REQUEST, new com.bigao.h5.proto.BinaryRequest()); ProtoPool._dic.set(ProtoPool.PROTO_PARAM...
来源: Laya_社区 发布时间: 20170807
...pState,get overState,get downState,get hitTestState 都返回null; set upState,set overState,set downState,set hitTestState 都不可设置。 例如:var btn:SimpleButton = new SimpleButton(_upState, _overState, _downState, _hitTestState); trace(btn.upState); //Output:null trace(btn....
来源: Laya_社区 发布时间: 20151203
...nction get textFormat():TextFormat { return _textFormat; } public function set textFormat(value:TextFormat):void { _textFormat = value; font = _textFormat._font; fontSize = _textFormat._fontSize; color = _textFormat._color; bold = _textFormat._bold; italic = _textFormat._italic; underline = _textFor...
来源: Laya_社区 发布时间: 20170516
...置为es6, 项目发布时会报错, 移植代码, 因为用了get,set函数, 子类又有重写get,set 的需求,子类的get,set 又无法调用父类的get,set, 所以用了es6, 发现发布的项目的时候会报错, Files\LayaAirIDE\resources\app\node_modules\uglify-js\...
来源: Laya_社区 发布时间: 20180124
...目前尝试了localRotationEuler,rotationEuler。 1.rotationEuler只有set方法,没有get方法,没办法做缓动。 2.localRotationEuler有get和set方法,但是有万向锁的问题(不知道是不是我理解错了)。 3.想参考 transform.rotate()转化为四元素Quaternion来...
来源: Laya_社区 发布时间: 20170829
...get visible():Boolean { return super.visible; } override public function set visible(value:Boolean):void { super.visible = value; if (value) _mcAni.removeFromParent(); } 1.7之后的转换 __getset(0,__proto,'visible',function(){ return Laya.superGet(SwatAniUI,this,'visible'); },function(valu...
来源: Laya_社区 发布时间: 20180227