大约有 1,451 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0053 秒)
...ogressbar设置皮肤后, 马上destroy会报bug set skin(value: string) { if (this._skin != value) { this._skin = value; if (this._skin && !Loader.getRes(this._skin)) { ILaya.loader.load(this._skin, Handler.create(this, this._skinLoaded), null, Loader.IMAGE, 1); // TODO TS } else { this._sk...
来源: Laya_社区 发布时间: 20200108
...,除去图片和音频资源其他不能保存 下载资源函数 MiniFileMgr.downLoadFile 图片和音频下载 MiniFileMgr.downOtherFiles 其他资源函数 MiniFileMgr.downFiles 主要说下载其他资源函数 MiniFileMgr.downFiles ->MiniFileMgr.readFile->MiniFileMgr.copyFile ...
来源: Laya_社区 发布时间: 20190222
...少. 在Animator的__proto.updatePlayer方法中, if (elapsedPlaybackTime >=clipDuration){ do { elapsedPlaybackTime-=clipDuration; playState._playEventIndex=0; ...
来源: Laya_社区 发布时间: 20181203
...; } function completeHandler() { play(); } function play() { mCurrIndex++; if (mCurrIndex >= mArmature.getAnimNum()) { mCurrIndex = 0; } mArmature.play(mCurrIndex,false); } })();module laya { import Skeleton = Laya.Skeleton; import Templet = Laya.Templet; import Event = Laya.Event; import Browser = ...
来源: Laya_示例 发布时间: 20241120
...0 + 80; nan.y =-60; this.addChild(nan); } private function delRen():void { if(arr.length){ for (var i:uint = 0; i < arr.length; i++ ){ if (arr[i].y > 800){ Pool.recover("nan", Image); } }arr[i].visible = false ; }; } 2017-12-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20171226
...空间的视口。 */ __getset(0,__proto,'normalizedViewport',function(){ if (!this._viewportExpressedInClipSpace){ var vp=this._viewport; var size=this.renderTargetSize; var sizeW=size.width; var sizeH=size.height; this._normalizedViewport.x=vp.x / sizeW; this._normalizedViewport.y=vp.y / sizeH; th...
来源: Laya_社区 发布时间: 20170601
...置了repeat=true,改变uv时图片没有平铺 private onFrame():void{ if(this.testScrollImg){ if(this.testScrollImg._bitmap && this.testScrollImg._bitmap.source){ this.testScrollImg._bitmap.source.repeat = true; var ss:any = this.testScrollImg._bitmap.source.uv; var uv:any[] = []; uv[0] ...
来源: Laya_社区 发布时间: 20180321
...调用相关代码,下面附上一个小Demo,大家可以参考! /*[IF-SCRIPT-BEGIN]('var file= document.createElement("input")');('file.type = "file"'); ('document.body.appendChild(file)'); ('file.style.zIndex = 999999'); ('file.style.position = "absolute"'); ('file.style.top = 20'); ('docume...
来源: Laya_社区 发布时间: 20160216
... = 1; i <= 9; i++) { var line = share['l'+i]; var point = share['p'+i]; if(i==FocusNum){ point.skin = "simbols/trave_3f.png"; } if(i<9){ line.visible=false; line.scaleX = 0.1; Laya.Tween.to(line,{scaleX:1,update:Laya.Handler.create(line,function(){ this.visible = true; })},800,Laya.Ease.cubicI...
来源: Laya_社区 发布时间: 20180118
... { GameRecorderMgr.instance = this; //判断是否已初始化录屏对象 if (!this._recorder) { //判断是否为字节小游戏环境 if (Browser.onTTMiniGame) { //初始化录屏对象 this._recorder = tt.getGameRecorderManager(); } } } static get instance(): GameRecorderMgr { if (!GameRecorderM...
来源: Laya2.0_文档 发布时间: 20210715