Enum VectorExpressionType ​
Namespace: ValveResourceFormat
Assembly: ValveResourceFormat.dll
Vector expression types used for particles.
public enum VectorExpressionTypeFields ​
VECTOR_EXPRESSION_UNINITIALIZED = -1
Uninitialized expression.
VECTOR_EXPRESSION_ADD = 0
Adds input 1 and input 2.
VECTOR_EXPRESSION_SUBTRACT = 1
Subtracts input 2 from input 1.
VECTOR_EXPRESSION_MUL = 2
Multiplies input 1 by input 2.
VECTOR_EXPRESSION_DIVIDE = 3
Divides input 1 by input 2.
VECTOR_EXPRESSION_INPUT_1 = 4
Passes through input 1 unchanged.
VECTOR_EXPRESSION_MIN = 5
Returns the component-wise minimum of input 1 and input 2.
VECTOR_EXPRESSION_MAX = 6
Returns the component-wise maximum of input 1 and input 2.
VECTOR_EXPRESSION_CROSSPRODUCT = 7
Returns the cross product of input 1 and input 2.
VECTOR_EXPRESSION_LERP = 8
Linearly interpolates between input 1 and input 2.

