We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OP_POWER
Variant
1 parent dd62b96 commit f037a69Copy full SHA for f037a69
binding_generator.py
@@ -2433,6 +2433,7 @@ def get_operator_id_name(op):
2433
"unary-": "negate",
2434
"unary+": "positive",
2435
"%": "module",
2436
+ "**": "power",
2437
"<<": "shift_left",
2438
">>": "shift_right",
2439
"&": "bit_and",
include/godot_cpp/variant/variant.hpp
@@ -122,6 +122,7 @@ class Variant {
122
OP_NEGATE,
123
OP_POSITIVE,
124
OP_MODULE,
125
+ OP_POWER,
126
// bitwise
127
OP_SHIFT_LEFT,
128
OP_SHIFT_RIGHT,
0 commit comments