大约有 16 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
...的set方法 之前的版本中,set方法为/** *获取对象的宽 */ __getset(0,__proto,'width',function(){ if (this._width)return this._width; return this.contextWidth; },[b]_super.prototype._$set_width[/b]);此次出问题的版本为/** *获取对象的宽 */ __getset(0,__proto,'width',functi...
来源: Laya_社区 发布时间: 20170620
...onent基类定义一个textFormatObj属性 //Label字体样式处理 Laya["getset"](false, Laya.Label.prototype, "fontStyle", function () { return this["textFormatObj"]; }, function (styleObj: string | ITextFormat) { if (this["textFormatObj"]!= styleObj) { this["textFormatObj"] = styleObj; StyleMana...
来源: Laya_社区 发布时间: 20171226
... var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; })(window,document,Laya);不知道是不是正确
来源: Laya_社区 发布时间: 20170925
...var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; })(window,document,Laya); 2017-02-09 0 0 分享 微博 QZONE 微信 joe51586 赞同来自: 这个问题就没个官方的人解答一下吗?这都几个月了。 编译器一下能...
来源: Laya_社区 发布时间: 20170204
ConchInput settype无效 __getset(0,__proto,'type',function(){ return this._type; },function(value){ console.info(value) if (value=="password") this._getCSSStyle().password=true; else thi...
来源: Laya_社区 发布时间: 20190715
...* *获取贴图。 *@return 贴图。 */ __getset(0,__proto,'texture',function(){ return this._shaderValues.getTexture(1); },function(value){ debugger; if (value) this._defineDatas...
来源: Laya_社区 发布时间: 20181128
...找到Button设置皮肤的地方,发现它会去调用changeClips。 __getset(0,__proto,'skin',function(){ return this._skin; },function(value){ if (this._skin !=value){ this._skin=value; this.callLate...
来源: Laya_社区 发布时间: 20191122
设置fontSize的时候没做类型转换 __getset(0,__proto,'fontSize',function(){ return this._fontSize; },function(value){ if (this._fontSize !=value){ this._fontSize=value; this.isChanged=true; } }); 如果设置fontSize="30",没有做类型转换,后面所有通过fontSize参与的加法...
来源: Laya_社区 发布时间: 20181204
...写死只能获取第一个 /** *设置动画数据。 *@param uiData */ __getset(0,__proto,'effectData',null,function(uiData){ if (uiData){ var aniData=uiData["animations"]; if (aniData && aniData[0]){ var data=aniData[0]; this._setUp({},data); if (data.nodes && data.nodes...
来源: Laya_社区 发布时间: 20181019
...a.ui.js改成这样即可,去掉判断if (this._selectedIndex !=value) __getset(0,__proto,'selectedIndex',function(){ return this._selectedIndex; },function(value){ //if (this._selectedIndex !=value){ this._selectedIndex=value; this.changeSelectStatus(); this.event(/*laya.events.Event.CHANGE*/&quo...
来源: Laya_社区 发布时间: 20190305