Enum VectorExpression ​
Namespace: ValveResourceFormat.Renderer.Particles
Assembly: Renderer.dll
Mathematical operation types for vector expressions.
public enum VectorExpressionFields ​
VECTOR_EXPRESSION_UNINITIALIZED = -1
Uninitialized expression; outputs zero.
VECTOR_EXPRESSION_ADD = 0
Adds the two input vectors.
VECTOR_EXPRESSION_SUBTRACT = 1
Subtracts input 2 from input 1.
VECTOR_EXPRESSION_MUL = 2
Component-wise multiplies the two input vectors.
VECTOR_EXPRESSION_DIVIDE = 3
Component-wise divides input 1 by input 2.
VECTOR_EXPRESSION_INPUT_1 = 4
Passes through input 1 unchanged.
VECTOR_EXPRESSION_MIN = 5
Component-wise minimum of the two input vectors.
VECTOR_EXPRESSION_MAX = 6
Component-wise maximum of the two input vectors.
VECTOR_EXPRESSION_CROSSPRODUCT = 7
Cross product of the two input vectors.
VECTOR_EXPRESSION_LERP = 8
Linearly interpolates between the two input vectors.
See Also ​
https://s2v.app/SchemaExplorer/cs2/particles/VectorExpressionType_t

