@kayahr/aseprite

    Interface FrameTag

    A tagged frame group which is a way to define a single animation within the sprite sheet.

    interface FrameTag {
        direction: Direction;
        from: number;
        name: string;
        repeat?: string;
        to: number;
    }
    Index

    Properties

    direction: Direction

    Animation direction.

    from: number

    Start frame number.

    name: string

    The tag name.

    repeat?: string

    Number of times to repeat the animation. undefined means loop indefinitely

    to: number

    End frame number.

    MMNEPVFCICPMFPCPTTAAATR