• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 17 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)

1. HTMLDIVElement设置innerHTML时报错 [ 100%]

...的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

2. 对游戏中各种控件字体样式使用“白鹭style”样式表 [ 95%]

...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

3. as3 自定义组件问题 [ 94%]

... var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; })(window,document,Laya);不知道是不是正确

来源: Laya_社区 发布时间: 20170925

4. 如果作大型LAYA AS项目,有可能支持module技术么 [ 87%]

...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

5. ConchInput settype无效 [ 87%]

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

6. EffectMaterial设置texture强制debugger [ 84%]

...*     *获取贴图。     *@return 贴图。     */     __getset(0,__proto,'texture',function(){         return this._shaderValues.getTexture(1);         },function(value){         debugger;         if (value)             this._defineDatas...

来源: Laya_社区 发布时间: 20181128

7. Laya中Button等组件lose skin的问题 [ 83%]

...找到Button设置皮肤的地方,发现它会去调用changeClips。 __getset(0,__proto,'skin',function(){         return this._skin;         },function(value){         if (this._skin !=value){             this._skin=value;             this.callLate...

来源: Laya_社区 发布时间: 20191122

8. 设置fontSize的时候没做类型转换 [ 82%]

设置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

9. 一个EffectAnimation只能创建一个动画效果吗 [ 77%]

...写死只能获取第一个 /** *设置动画数据。 *@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

10. List的selectHandler 点击同一个item只能触发一次回调 [ 77%]

...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