Slash-The-Hordes/assets/Scripts/Utils/OpenCloseAnimator.ts
2022-12-31 12:29:27 +01:00

34 lines
1.0 KiB
TypeScript

import { Animation, Component, _decorator } from "cc";
import { delay } from "../Services/Utils/AsyncUtils";
const { ccclass, property } = _decorator;
@ccclass("OpenCloseAnimator")
export class OpenCloseAnimator extends Component {
@property(Animation) private animation: Animation;
private readonly openStateName = "Open";
private readonly closeStateName = "Close";
private openDuration = 0;
private closeDuration = 0;
public start(): void {
this.node.active = false;
this.openDuration = this.animation.getState(this.openStateName).duration;
this.closeDuration = this.animation.getState(this.closeStateName).duration;
}
public async playOpen(): Promise<void> {
this.node.active = true;
this.animation.play(this.openStateName);
await delay(this.openDuration);
}
public async playClose(): Promise<void> {
this.node.active = true;
this.animation.play(this.openStateName);
await delay(this.closeDuration);
this.node.active = false;
}
}