Click or drag to resize

VisualShaderNodeVectorOpOperatorEnum Enumeration

[Missing <summary> documentation for "T:Godot.VisualShaderNodeVectorOp.OperatorEnum"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum OperatorEnum
Members
  Member nameValueDescription
Add0

Adds two vectors.

Sub1

Subtracts a vector from a vector.

Mul2

Multiplies two vectors.

Div3

Divides vector by vector.

Mod4

Returns the remainder of the two vectors.

Pow5

Returns the value of the first parameter raised to the power of the second, for each component of the vectors.

Max6

Returns the greater of two values, for each component of the vectors.

Min7

Returns the lesser of two values, for each component of the vectors.

Cross8

Calculates the cross product of two vectors.

Atan29

Returns the arc-tangent of the parameters.

Reflect10

Returns the vector that points in the direction of reflection. a is incident vector and b is the normal vector.

Step11

Vector step operator. Returns 0.0 if a is smaller than b and 1.0 otherwise.

See Also