大约有 976 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0064 秒)
Laya_社区(598) Laya2.0_文档(80) Laya3.0_api(67) Laya2.0_api(60) laya_api(56) Laya2.0_示例(41) Laya_示例(37) Laya3.0_文档(37)
...动画的pivot动画 tl2.play(0,true,"pivot"); //动画的显示位置 tl2.pos(300,0); } } new GameMain(); ``` 示例代码运行效果如动图31所示: ![31](img/31.gif)(动图31) ### 3.4 在UI中使用时间轴动画,然后在项目代码中调用。 #### 3.4.1 创建UI页,添加Animation...
来源: Laya2.0_文档 发布时间: 20210715
...画的pivot动画 tl2.play(0, true, "pivot"); //动画的显示位置 tl2.pos(300,0); } } } ``` 示例代码运行效果如动图31所示: ![动图31](img/31.gif) (动图31) #### ### 3.4 在UI中使用时间轴动画,然后在项目代码中调用。 #### 3.4.1 创建UI页,添加Animation动...
来源: Laya2.0_文档 发布时间: 20210715
...加载时报错,就是这里: laya.core.js的7430行 if (this._pos_+2 > this._length)throw "getUint16 error - Out of bounds"; 但是,不使用预加载,就不报错,只是不知道什么时候真的加载完成,那个_template不再为null,我就可以调用play了。 怎...
来源: Laya_社区 发布时间: 20180622
...mer.PROGRESS_TIMER_TYPE_RECT); processTimer.setPosition(0,0); processTimer.setReverseDirection(true) var percent:Number = 0; if( data.totalDuration != 0 && data.totalDuration != -1...
来源: Laya_社区 发布时间: 20180404
...;//把接收到的二进制数据读进byte数组便于解析。 this.byte.pos = 0;//设置偏移指针; ////下面开始读取数据,按照服务器传递过来的数据,按照顺序读取 var a:number = this.byte.getByte(); var b:number = this.byte.getInt16(); var c:number = this.byte.getFlo...
来源: Laya2.0_文档 发布时间: 20210714
...rDeserialize onAwake onDestroy onDisable onEnable once parentRepaint pivot pos reCache removeChild removeChildAt removeChildByName removeChildren removeSelf render repaint replaceChild runCallLater scale setChildIndex setGraphics setSelfBounds set_anchorX set_anchorY set_bottom set_dataSource set_he...
来源: Laya3.0_api 发布时间: 20231115
...aphics.drawCircle(80,80,50,"#ff0000"); //圆形所在的位置坐标 cMask.pos(120,50); //实现img显示对象的遮罩效果 img.mask = cMask; } })(); ``` 运行效果如图3所示: ![图3](img/3.jpg) (图3) 通过对比代码我们发现,实现遮罩很简单,把创建的显示对象cMa...
来源: Laya2.0_文档 发布时间: 20210715
...owser.pixelRatio, Laya.Browser.pixelRatio); changeActionButton.pos(Laya.stage.width / 2 - changeActionButton.width * Laya.Browser.pixelRatio / 2, Laya.stage.height - 100 * Laya.Browser.pixelRatio); changeActionButton.on(Laya.Event.CLICK, this, function () { ...
来源: Laya_社区 发布时间: 20171127
...ddle"); _webframe.setAttribute('scrolling', "no"); _webframe.setAttribute('position', "absolute"); _webframe.setAttribute('style', "z-index:100001;position: absolute; left: 0px; top: 0px; background: rgb(0, 0, 0);"); Browser.document.body.appendChild(_webframe); 下面图片左边是正产机型截...
来源: Laya_社区 发布时间: 20180103
...seOverHole); this.on(Event.MOUSE_OUT, this, this.__onMouseOutHole); } this.pos(this._objectInfo.templateInfo.x, this._objectInfo.templateInfo.y); } private __onMouseOverHole(event:Event):void { this._body.scale(1.2, 1.2); } private __onMouseOutHole(event:Event):void { this._body.scale(1, 1); }代码...
来源: Laya_社区 发布时间: 20180308