Back to API Reference
Enum
ParameterComposition
Deterministic operation combining an owned value with a parameter's cascade result.
public static readonly ParameterComposition Replace = 0The owned value fully replaces the cascade result; highest priority wins.
public static readonly ParameterComposition Add = 1Owned values add to the cascade result in stable order.
public static readonly ParameterComposition Multiply = 2Owned values multiply the cascade result in stable order.
public static readonly ParameterComposition Custom = 3The descriptor's declared custom operation.
