Interface AnimatorData

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

Properties

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