Interface Animation

interface Animation {
    frames?: number[][];
    height: number;
    loop: boolean;
    offset?: number[];
    strip?: AnimationStrip;
    width: number;
}

Properties

frames?: number[][]
height: number
loop: boolean
offset?: number[]
width: number