| 123456789101112131415161718192021222324252627282930 |
- import { _decorator, v3 } from "cc";
- import { AnimatorSkeletal } from "../../../../../extensions/oops-plugin-framework/assets/libs/animator/AnimatorSkeletal";
- import { Subway } from "../Subway";
- const { ccclass } = _decorator;
- @ccclass("SubwayViewAnimator")
- export class SubwayViewAnimator extends AnimatorSkeletal {
- /**关门完成完成 */
- onOpenDoorComplete: Function = null!;
- onLeaveComplete: Function = null!;
- onWaitComplete: Function = null!;
- onStationComplete: Function = null!;
- /** 地铁对象 */
- subway: Subway = null!;
- start() {
- super.start();
- }
- protected onDestroy(): void {
- super.destroy()
- }
- }
|