大约有 1,449 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0080 秒)
...作的按钮监听事件中播放动作 switch (this.blendType) { case 0: if (this.motionCross) { //在当前动画状态和目标动画状态之间进行融合过渡播放 //第三个参数为layerIndex 层索引使用混合模式,混合了0层和1层的动画 this.animator.crossFade(this.motions...
来源: Laya2.0_文档 发布时间: 20210715
...etHeightOfOneU():Number { if(this.U<=0) return 0; return this.cab.height/this.U; } private function setCurrentCabinet(ev:MouseEvent):void ...
来源: Laya_社区 发布时间: 20180202
...a.Sprite>(); } /** * 实例 */ public static getInstance(): ColorTool { if (ColorTool.instance == null) { ColorTool.instance = new ColorTool(); } return ColorTool.instance; } /** * 添加颜色改变对象 * @param target */ public addColorTarget(target: Laya.Sprite): void { this.targets.push(t...
来源: Laya_社区 发布时间: 20180930
...ldren); var item = this.getChildAt(i); if(item instanceof Item) { item.removeSelf(); item.visible = true; Pool.recover("item", item); item.graphics.clear(); ...
来源: Laya_社区 发布时间: 20170113
...tage.scaleMode = Stage.SCALE_FIXED_HEIGHT; Laya.stage.bgColor = "#ffffff"; if (Browser.onMiniGame) { Laya.timer.once(1000, this, function():void{ //设置共享画布大小 __JS__('sharedCanvas').width = Laya.stage.width; __JS__('sharedCanvas').height = Laya.stage.height; //主域往子域透传消...
来源: Laya_社区 发布时间: 20180525
...享 微博 QZONE 微信 nate(杨纯) 赞同来自: 因为你是闹闹啊 if (tmpDat instanceof Laya.SpineTemplet) { let obj: object = tmpDat["_textures"]; for (let key in obj) { if (obj.hasOwnProperty(key)) { let texture = obj[key] as L...
来源: Laya_社区 发布时间: 20240429
... 1 个回复 Laya_XS 赞同来自: var nMem = conchConfig.getTotalMem(); if (nMem <= 524288) { conchConfig.atlasNum = 10; conchConfig.maxTextureMemSize = 84 * 1024 * 1024;//图集内存上限 } else if (nMem > 524288 && nMem <= 1048576) { conchConfig.atlasNum = 16; conchConfig.maxTe...
来源: Laya_社区 发布时间: 20170322
...Update(){ var touchCount = this._scene.input.touchCount(); if (1 === touchCount){ //判断是否为两指触控,撤去一根手指后引发的touchCount===1 if(this.isTwoTouch){ return; ...
来源: Laya_社区 发布时间: 20190531
...umber = 0):Number { /*[DISABLE-ADD-VARIABLE-DEFAULT-VALUE]*/ var s:Number; if (t == 0) return b; if ((t /= d) == 1) return b + c; if (!p) p = d * .3; if (!a || (c > 0 && a < c) || (c < 0 && a < -c)) { a = c; s = p / 4; } else s = p / PI2 * Math.asin(c / a); return (a * Ma...
来源: Laya_社区 发布时间: 20180104
...通过修改代码来添加保护:var data:*; data=Loader.getRes(_url); if (!data) { event(Event.ERROR,"file not find"); return; } //保护修改-----start------------------ var atlasData:Object = Loader.getAtlas(_atlasPath); if(!atlasData) { event(Event.ERROR,"file not find"); return; } //保护...
来源: Laya_社区 发布时间: 20180910