RSX Code Reference
    Preparing search index...
    • rsx
    • Editor
    • PolytronPipelineParameterConnection

    Interface PolytronPipelineParameterConnection

    The PolytronPipelineParameterConnection represents a connection between a pipeline output and an input parameter on a PolytronPipelineStep.

    interface PolytronPipelineParameterConnection {
        InputName: string;
        InputStepID: string;
        OutputName: string;
        OutputStepID?: string;
    }
    Index
    InputName: string

    The input parameter name.

    InputStepID: string

    The input step ID

    OutputName: string

    The output parameter name.

    OutputStepID?: string

    The optional step ID that provides the output data. If undefined, the parameter must be defined on the pipeline.