Enum BlendFunctionValue
- Namespace
- ShadowDusk.Core
- Assembly
- ShadowDusk.Core.dll
How source and destination blend terms are combined (mirrors MonoGame's BlendFunction ordinals).
public enum BlendFunctionValue
Fields
Add = 0Add the source and destination terms.
Max = 4Take the component-wise maximum of the two terms.
Min = 3Take the component-wise minimum of the two terms.
ReverseSubtract = 2Subtract the source term from the destination term.
Subtract = 1Subtract the destination term from the source term.