diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2022-03-07 20:25:21 +0300 |
---|---|---|
committer | Yuri Rubinsky <chaosus89@gmail.com> | 2022-05-11 16:30:37 +0300 |
commit | dbd7a315074257bca834e1448b53a905ebb8dd8b (patch) | |
tree | a13d08663bc046cb445373b7828d0f3ac42cd867 /core/math/expression.h | |
parent | 9963ae3553d059e4ac3b57c7a4cdc55d1a87d49a (diff) | |
download | redot-engine-dbd7a315074257bca834e1448b53a905ebb8dd8b.tar.gz |
Implement exponential operator (**) to GDScript/Expressions
Diffstat (limited to 'core/math/expression.h')
-rw-r--r-- | core/math/expression.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/expression.h b/core/math/expression.h index d43cc4091a..6ea3c1611f 100644 --- a/core/math/expression.h +++ b/core/math/expression.h @@ -85,6 +85,7 @@ private: TK_OP_MUL, TK_OP_DIV, TK_OP_MOD, + TK_OP_POW, TK_OP_SHIFT_LEFT, TK_OP_SHIFT_RIGHT, TK_OP_BIT_AND, |