大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0016 秒)
...); ani.loadAtlas(aniConfPath); // 加载图集动画 ani.interval = 30; // 设置播放间隔(单位:毫秒) ani.index = 1; // 当前播放索引 ani.play(); // 播放图集动画 // 获取动画的边界信息 let bounds = ani.getGraphicBounds(); ani.pivot(bounds.width / 2, bounds.height / 2)...
来源: Laya2.0_示例 发布时间: 20241118
...te(); Laya.stage.addChild(this.ape1); this.ape1.loadImage(monkey2Path); // 设置轴心点为中心 this.ape1.pivot(55, 72); this.ape1.pos(Laya.stage.width / 2 - gap, Laya.stage.height / 2); // 不设置轴心点默认为左上角 this.ape2 = new Sprite(); Laya.stage.addChild(this.ape2); this.ape2.l...
来源: Laya2.0_示例 发布时间: 20241118
...应函数 * @param evt */ onMouseUp(evt) { if (this.isDestroyed) { //通过设置 visible=true ,来触发渲染,然后引擎会自动恢复资源 this.spBg.visible = true; this.aniFly.visible = true; this.isDestroyed = false; this.txt.text = "销毁"; } else { //通过设置 visible=false ,来...
来源: Laya2.0_示例 发布时间: 20241118
...moveLimit, distance= 0, time= 2000){ if (eventName === "dragTopLimit") { //设置下拉的最大橡皮筋高度,只有在启用了停止滚动的功能后有效 this.refreshList.scrollBar.topMoveLimit = moveLimit; } else if (eventName === "dragBottomLimit") { this.refreshList.scrollBar.bottomMoveLim...
来源: Laya2.0_示例 发布时间: 20241118