mirror of
https://github.com/godotengine/godot-cpp.git
synced 2025-12-31 01:48:45 +03:00
Add missing OP_POWER operator to Variant
(cherry picked from commit f037a697eb)
This commit is contained in:
committed by
David Snopek
parent
62eed50524
commit
c0b2d85ffc
@@ -2433,6 +2433,7 @@ def get_operator_id_name(op):
|
||||
"unary-": "negate",
|
||||
"unary+": "positive",
|
||||
"%": "module",
|
||||
"**": "power",
|
||||
"<<": "shift_left",
|
||||
">>": "shift_right",
|
||||
"&": "bit_and",
|
||||
|
||||
@@ -122,6 +122,7 @@ public:
|
||||
OP_NEGATE,
|
||||
OP_POSITIVE,
|
||||
OP_MODULE,
|
||||
OP_POWER,
|
||||
// bitwise
|
||||
OP_SHIFT_LEFT,
|
||||
OP_SHIFT_RIGHT,
|
||||
|
||||
Reference in New Issue
Block a user