Table of Contents

Enum VisualShaderNodeIntFunc.FunctionEnum

Namespace
Godot
Assembly
GodotSharp.dll
public enum VisualShaderNodeIntFunc.FunctionEnum : long

Fields

Abs = 0

Returns the absolute value of the parameter. Translates to abs(x) in the Godot Shader Language.

BitwiseNot = 3

Returns the result of bitwise NOT operation on the integer. Translates to ~a in the Godot Shader Language.

Max = 4

Represents the size of the VisualShaderNodeIntFunc.FunctionEnum enum.

Negate = 1

Negates the x using -(x).

Sign = 2

Extracts the sign of the parameter. Translates to sign(x) in the Godot Shader Language.