Enum VisualShaderNodeVectorOp.OperatorEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum VisualShaderNodeVectorOp.OperatorEnum : long
Fields
Add = 0Adds two vectors.
Atan2 = 9Returns the arc-tangent of the parameters.
Cross = 8Calculates the cross product of two vectors.
Div = 3Divides vector by vector.
EnumSize = 12Represents the size of the VisualShaderNodeVectorOp.OperatorEnum enum.
Max = 6Returns the greater of two values, for each component of the vectors.
Min = 7Returns the lesser of two values, for each component of the vectors.
Mod = 4Returns the remainder of the two vectors.
Mul = 2Multiplies two vectors.
Pow = 5Returns the value of the first parameter raised to the power of the second, for each component of the vectors.
Reflect = 10Returns the vector that points in the direction of reflection.
ais incident vector andbis the normal vector.Step = 11Vector step operator. Returns
0.0ifais smaller thanband1.0otherwise.Sub = 1Subtracts a vector from a vector.