Enum VisualShaderNodeUIntOp.OperatorEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum VisualShaderNodeUIntOp.OperatorEnum : long
Fields
Add = 0Sums two numbers using
a + b.BitwiseAnd = 7Returns the result of bitwise
ANDoperation on the integer. Translates toa & bin the Godot Shader Language.BitwiseLeftShift = 10Returns the result of bitwise left shift operation on the integer. Translates to
a << bin the Godot Shader Language.BitwiseOr = 8Returns the result of bitwise
ORoperation for two integers. Translates toa | bin the Godot Shader Language.BitwiseRightShift = 11Returns the result of bitwise right shift operation on the integer. Translates to
a >> bin the Godot Shader Language.BitwiseXor = 9Returns the result of bitwise
XORoperation for two integers. Translates toa ^ bin the Godot Shader Language.Div = 3Divides two numbers using
a / b.EnumSize = 12Represents the size of the VisualShaderNodeUIntOp.OperatorEnum enum.
Max = 5Returns the greater of two numbers. Translates to
max(a, b)in the Godot Shader Language.Min = 6Returns the lesser of two numbers. Translates to
max(a, b)in the Godot Shader Language.Mod = 4Calculates the remainder of two numbers using
a % b.Mul = 2Multiplies two numbers using
a * b.Sub = 1Subtracts two numbers using
a - b.