Polyman Documentation - v2.3.3
    Preparing search index...

    Interface ParsedScriptLine

    Internal: a single parsed line of a Polygon-format generator script. Produced by the parser; not part of Config.json.

    ParsedScriptLine

    interface ParsedScriptLine {
        generator: string;
        args: string[];
        output: ScriptOutput;
        group?: string;
        raw: string;
        lineNumber: number;
    }
    Index

    Properties

    generator: string

    Generator name (no extension)

    args: string[]

    Raw arguments after FreeMarker expansion

    output: ScriptOutput

    Output target(s) — single index or multi

    group?: string

    Active group from the most recent @group header

    raw: string

    Original source line for diagnostics

    lineNumber: number

    1-based line number in the source script