You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Implement exponential operator (**) to GDScript/Expressions
This commit is contained in:
committed by
Yuri Rubinsky
parent
9963ae3553
commit
dbd7a31507
@@ -78,6 +78,7 @@ public:
|
||||
PLUS,
|
||||
MINUS,
|
||||
STAR,
|
||||
STAR_STAR,
|
||||
SLASH,
|
||||
PERCENT,
|
||||
// Assignment
|
||||
@@ -85,6 +86,7 @@ public:
|
||||
PLUS_EQUAL,
|
||||
MINUS_EQUAL,
|
||||
STAR_EQUAL,
|
||||
STAR_STAR_EQUAL,
|
||||
SLASH_EQUAL,
|
||||
PERCENT_EQUAL,
|
||||
LESS_LESS_EQUAL,
|
||||
|
||||
Reference in New Issue
Block a user