RSX Code Reference
    Preparing search index...

    Interface PolytronOutputParameter

    The PolytronOutputParameter interface represents an output parameter.

    interface PolytronOutputParameter {
        ColorSpace?: "sRGB" | "Linear";
        FriendlyName?: string;
        ID: string;
        Name: string;
        OutputType?: "OneToMany" | "OneToOne";
        Value: string | number | boolean;
        VariableType: string;
    }
    Index
    ColorSpace?: "sRGB" | "Linear"

    Defines the output color space. Valid for image types. Default: "sRGB"

    FriendlyName?: string

    The friendly name used for display.

    ID: string

    The unique parameter ID.

    Name: string

    The unique name, no other parameter on the Polytron may have the same name.

    OutputType?: "OneToMany" | "OneToOne"

    Defines the output type. If OneToMany multiple files may be generated by this parameter. Default: "OneToOne"

    Value: string | number | boolean

    The output value.

    VariableType: string

    The variable type.