2023-02-22 09:50:51 +08:00

25 lines
362 B
TypeScript

import { _decorator, Component, Node, Animation, CCFloat, CCString } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('DelayPlay')
export class DelayPlay extends Component {
@property([Animation])
animations = [];
@property([CCFloat])
delay = [];
@property([CCString])
animation_names = [];
start () {
}
}