diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-05-11 16:58:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-11 16:58:33 +0200 |
commit | d68c355145d5c07070fc999eedf8c973d8c70fbe (patch) | |
tree | e742dd05ac899338debc63b5ec33ddc4e81ac569 /core/variant/variant.h | |
parent | 0b0beae097b887feec721297e33de15e139baafc (diff) | |
parent | dbd7a315074257bca834e1448b53a905ebb8dd8b (diff) | |
download | redot-engine-d68c355145d5c07070fc999eedf8c973d8c70fbe.tar.gz |
Merge pull request #58873 from Chaosus/power_op
Implement exponential operator (**) to GDScript/Expressions
Diffstat (limited to 'core/variant/variant.h')
-rw-r--r-- | core/variant/variant.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/variant/variant.h b/core/variant/variant.h index 475bf7158d..726ba120b5 100644 --- a/core/variant/variant.h +++ b/core/variant/variant.h @@ -473,6 +473,7 @@ public: OP_NEGATE, OP_POSITIVE, OP_MODULE, + OP_POWER, //bitwise OP_SHIFT_LEFT, OP_SHIFT_RIGHT, |