大约有 2 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0010 秒)
...); } setup() { let vGap = 100; this.rotateTimeBasedText = this.createText("基于时间旋转", Laya.stage.width / 2, (Laya.stage.height - vGap) / 2); this.rotateFrameRateBasedText = this.createText("基于帧频旋转", this.rotateTimeBasedText.x, this.rotateTimeBasedText.y + vGap); Laya.timer.loop...
来源: Laya2.0_示例 发布时间: 20241119
...utton2.off(Event.CLICK, this, this.onDecreaseAlpha2); //定时执行一次(基于帧率) Laya.timer.frameOnce(60, this, this.onComplete2); } onComplete1() { //spBtn1的透明度减少0.5 this.button1.alpha -= 0.5; } onComplete2() { //spBtn2的透明度减少0.5 this.button2.alpha -= 0.5; } } new Tim...
来源: Laya2.0_示例 发布时间: 20241119