There was an error while loading. Please reload this page.
2 parents dd62b96 + f037a69 commit edf1637Copy full SHA for edf1637
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