ConstructorOptions

sealed interface ConstructorOptions(source)

Properties

Link copied to clipboard

Whether to execute each post-process stage where the input to one stage is the output of the previous. Otherwise, the input to each contained stage is the output of the stage that executed before the composite. Default value - true

Link copied to clipboard
abstract var name: String?

The unique name of this post-process stage for reference by other composites. If a name is not supplied, a GUID will be generated. Default value - createGuid()

Link copied to clipboard
abstract var stages: ReadonlyArray<Any>

An array of PostProcessStages or composites to be executed in order.

Link copied to clipboard
abstract var uniforms: Any?

An alias to the uniforms of post-process stages.