ASCIIGround - v1.1.2
    Preparing search index...

    Interface CharacterData

    Represents a single character to be rendered at a specific position.

    This interface defines all the visual properties that can be applied to an individual character in the ASCII animation.

    interface CharacterData {
        x: number;
        y: number;
        char: string;
        color?: string;
        opacity?: number;
        scale?: number;
        rotation?: number;
    }
    Index

    Properties

    x: number

    X coordinate in the character grid

    y: number

    Y coordinate in the character grid

    char: string

    The character to render

    color?: string

    Optional color override (CSS color string)

    opacity?: number

    Optional opacity value (0-1)

    scale?: number

    Optional scale multiplier for size

    rotation?: number

    Optional rotation in radians