大约有 8 项符合查询结果, 库内数据总量为 30,902 项。 (搜索耗时: 0.0031 秒)
...对象及从父节点移除自己。</p> * @param destroyChild (可选)是否同时销毁子节点,若值为true,则销毁子节点,否则不销毁子节点。 */ public function destroy(destroyChild:Boolean = true):void {} 2018-06-2...
来源: Laya_社区 发布时间: 20180620
Animation未释放资源的引用 先上源码 destroy(destroyChild: boolean = true): void { this.stop(); super.destroy(destroyChild); this._frames = null; this._labels = null; }animation的destory方法,只是将_frames赋值为null,并没有对_frames的graphics进行destroy, 这样会导...
来源: Laya_社区 发布时间: 20200414
...urce.offestX+position.x; source.y=source.offestX+position.y; } } destroy(destroyChild?:boolean):void{ this.timer.clear(this,this.__updateBinds); this.__bindList.length=0; this.__bindList=null; super.destroy(destroyChild); } } 2. 可绑定到骨骼的内容 /** * 可绑定到骨骼的内容(...
来源: Laya_社区 发布时间: 20190805
...r监听,移除子对象及从父节点移除自己。</p> * @param destroyChild (可选)是否同时销毁子节点,若值为true,则销毁子节点,否则不销毁子节点。 */ destroy(destroyChild: boolean = true): void { this.destroyed = true; this._destroyAllComponent(); this._...
来源: Laya_社区 发布时间: 20220224
...+ _proMask.scaleX); } /** *@inheritDoc */ override public function destroy(destroyChild:Boolean = true):void { super.destroy(destroyChild); _proMask && _proMask.destroy(_proMask); _progress && _progress.destroy(destroyChild); _proMask = null; _progress = null; } /** * 进度条皮肤...
来源: Laya_社区 发布时间: 20170327
...降。 清理方法 override public function destroy(destroyChild:Boolean = true):void { if(effect3D != null){ effect3D.destroy(); effect3D = null; } super.des...
来源: Laya_社区 发布时间: 20180517
...设置skin方式加载资源,然后快速关闭界面,Image被 destroy(destroyChild: boolean = true): void { super.destroy(true); this._bitmap && this._bitmap.destroy(); this._bitmap = null; } 2,当前资源加载完成...
来源: Laya_社区 发布时间: 20191024
... this.mRelative.setTo(0, 0); } public destroy(destroyChild: boolean = true): void { this.clearAll(); this.mRelative = null; super.destroy(destroyChild); } 这样,那看看具体怎么使用: Var enti...
来源: Laya_社区 发布时间: 20161109