ASCIIGround - v1.1.2
    Preparing search index...

    Interface ASCIIRendererOptions

    Configuration options for the ASCII renderer.

    interface ASCIIRendererOptions {
        color: string;
        animated: boolean;
        animationSpeed: number;
        fontSize: number;
        fontFamily: string;
        backgroundColor: string;
        padding: number;
        rendererType: "2D" | "WebGL";
        enableMouseInteraction: boolean;
        charSpacingX?: number;
        charSpacingY?: number;
        resizeTo: HTMLElement | Window;
    }
    Index

    Properties

    color: string

    Text color for rendered characters

    animated: boolean

    Whether animation is enabled

    animationSpeed: number

    Animation speed multiplier

    fontSize: number

    Font size in pixels

    fontFamily: string

    Font family to use for rendering

    backgroundColor: string

    Background color

    padding: number

    Padding around the rendered area

    rendererType: "2D" | "WebGL"

    Renderer type to use

    enableMouseInteraction: boolean

    Enable mouse interaction support

    charSpacingX?: number

    Horizontal spacing between characters. If not specified, auto-calculated based on character width

    charSpacingY?: number

    Vertical spacing between characters. If not specified, auto-calculated based on character height

    resizeTo: HTMLElement | Window

    Resize target for the renderer, defaults to window.