Values

Equal

Equality operator (==).

NotEqual

Inequality operator (!=).

Less

Less than operator (<).

LessEqual

Less than or equal operator (<=).

Greater

Greater than operator (>).

GreaterEqual

Greater than or equal operator (>=).

Add

Addition operator (+).

Subtract

Subtraction operator (-).

Multiply

Multiplication operator (*).

Divide

Division operator (/).

Negate

Unary negation operator (-).

Positive

Unary plus operator (+).

Module

Remainder/modulo operator (%).

StringConcat

String concatenation operator (+).

ShiftLeft

Left shift operator (<<).

ShiftRight

Right shift operator (>>).

BitAnd

Bitwise AND operator (&).

BitOr

Bitwise OR operator (``).

BitXor

Bitwise XOR operator (^).

BitNegate

Bitwise NOT operator (~).

And

Logical AND operator (and or &&).

Or

Logical OR operator (or or ``).

Xor

Logical XOR operator (not implemented in GDScript).

Not

Logical NOT operator (not or !).

In

Logical IN operator (in).

Max

Represents the size of the godot.Variant_Operator enum.