Interface AnimatorData

interface AnimatorData {
    anchor?: Vector;
    animationSpeed?: number;
    animations: Record<string, number[]>;
    cols: number;
    rows: number;
}

Properties

anchor?: Vector
animationSpeed?: number
animations: Record<string, number[]>
cols: number
rows: number