pipelines

 

Tag: pipelines

Parent tag: project
Attributes:

  • default (string): the name of the default pipeline. If not provided the first pipeline will be the default.
  • mode (enum): {RUN_DEFAULT (default), RUN_ALL}.

Child tags:

This tag allows the definition of a set of rendering pipelines. If mode is set to RUN_ALL all pipelines will be executed in a sequence. Note that a pipeline may run for a number of frames if frameCount is defined in the pipeline.

Example:

	
	<pipelines default="P2">
		<pipeline name="P1">
			...
		</pipeline>
		<pipeline name="P2">
			...
		</pipeline>
		...
	</pipelines>