大约有 1,449 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0057 秒)
...igidBody['objs'].length; i++) { const element = Laya.RigidBody['objs'][i]; if(element) if(element.owner){ if(element.owner.getComponent(Laya.CircleCollider)){return} if(element.owner.getComponent(Laya.BoxCollider)){ element['_sysPosToPhysic'](); element.owner.getComponent(Laya.BoxCollider)['resetSha...
来源: Laya_社区 发布时间: 20200807
...._keyframeNodeOwnerMap[fullPath]; let mat = false; if (keyframeNodeOwner) { keyframeNodeOwner.referenceCount++; clipOwners[nodeIndex] = keyframeNodeOwner; } else { var property = propertyOwner; ...
来源: Laya_社区 发布时间: 20240517
... var code = str.charCodeAt(idx); if (code >= 0xD800 && code <= 0xDBFF) { this._words.push(character + str.charAt(++idx)); } else { this._words.push(character...
来源: Laya_社区 发布时间: 20180517
...,会报错,我看了编译后的JS代码,的确有问题,data.unshift没有判断是否是数组 if (this.method==null)return null; var id=this._id; if (data==null) var result=this.method.apply(this.caller,this.args); else if (!this.args && !data.unshift)result=this.method.call(this....
来源: Laya_社区 发布时间: 20170215
...ublish.js脚本中也做同样的事情就好。 public.bat[code]@echo off if exist ..\..\build ( rmdir /s/q ..\..\build ) if exist ..\..\bin\tsc\layaAir ( rmdir /s/q ..\..\bin\tsc\layaAir ) node index.js cd ..\ gulp build @pause 复制代码[/code] 查看代码易知,在编译前,会先删除bu...
来源: Laya_社区 发布时间: 20200925
...到字节是正常的。 public static deepCopy<T>(instance: T): T { if (instance == null) { return instance } if (instance instanceof Date) { return new Date(instance.getTime()) as any } if (instance instanceof Array) { var cloneArr = [] as any[] ;(instance as any[]).forEach((value) => { c...
来源: Laya_社区 发布时间: 20230625
...Loader.getRes(arr[0]):laya.net.Loader.getRes(url); if (res.bitmap){ if (Render.isConchApp){ if (res.bitmap.source.releaseTexture){ res.bitmap.source.release...
来源: Laya_社区 发布时间: 20171213
...数中,this._prepareCameraToRender();这一行后面添加如下代码 if(this._scene.lightCullingMask && this._scene.lightCullingMask instanceof Function){this._scene.lightCullingMask(scene,this);} 3、对想要开启灯光裁剪的场景调用 LightCullingMask.enableLightCullingMask(scen...
来源: Laya_社区 发布时间: 20200110
... // @xd added, 如果index == -1 不执行 if(index == -1){ return; } this.length--; if (index!==this.length){ ...
来源: Laya_社区 发布时间: 20190618
...R { constructor () { this._isWxContext = !!window.wx } onShow (callback) { if (!this._isWxContext) return window.wx.onShow(callback) } onHide (callback) { if (!this._isWxContext) return window.wx.onHide(callback) } offShow (callback) { if (!this._isWxContext) return window.wx.offShow(callback) } off...
来源: Laya_社区 发布时间: 20181101