Skip to content

Pipeline

Defined in: node_modules/@rbxts/planck/src/Pipeline.d.ts:8

Pipelines represent a set of ordered Phases. Systems cannot be assigned to Pipelines themselves, but rather to Phases within those Pipelines.

insert(phase): this

Defined in: node_modules/@rbxts/planck/src/Pipeline.d.ts:19

Adds a Phase to the Pipeline, ordering it implicitly.

Phase

this


insertAfter(phase, after): this

Defined in: node_modules/@rbxts/planck/src/Pipeline.d.ts:21

Adds a Phase to the Pipeline after another Phase, ordering it explicitly.

Phase

Phase

this


insertBefore(phase, before): this

Defined in: node_modules/@rbxts/planck/src/Pipeline.d.ts:23

Adds a Phase to the Pipeline before another Phase, ordering it explicitly.

Phase

Phase

this