Enum VisualShaderNodeIntFunc.FunctionEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum VisualShaderNodeIntFunc.FunctionEnum : long
Fields
Abs = 0Returns the absolute value of the parameter. Translates to
abs(x)in the Godot Shader Language.BitwiseNot = 3Returns the result of bitwise
NOToperation on the integer. Translates to~ain the Godot Shader Language.Max = 4Represents the size of the VisualShaderNodeIntFunc.FunctionEnum enum.
Negate = 1Negates the
xusing-(x).Sign = 2Extracts the sign of the parameter. Translates to
sign(x)in the Godot Shader Language.