添加结算动画

This commit is contained in:
2025-05-29 19:03:29 +08:00
parent 6d06e8600f
commit 5c66f3b8d2
8 changed files with 197 additions and 71 deletions

View File

@@ -0,0 +1,24 @@
const { regClass, property } = Laya;
@regClass()
export class AutoRotate extends Laya.Script {
declare owner : Laya.Image;
@property(Number)
public speed: number = 1;
private begin = 0
//第一次执行update之前执行只会执行一次
onStart(): void {
Laya.timer.loop(100, this, ()=>{
this.begin += this.speed
if (this.begin >= 360) {
this.begin = 0
}
this.owner.rotation = this.begin
})
}
}

View File

@@ -0,0 +1,3 @@
{
"uuid": "b4f67ca3-86fe-409d-a439-63a715243fb7"
}