Implement exponential operator (**) to GDScript/Expressions
This commit is contained in:
parent
9963ae3553
commit
dbd7a31507
15 changed files with 126 additions and 27 deletions
|
|
@ -171,6 +171,18 @@
|
|||
Multiplies two [int]s.
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator **">
|
||||
<return type="float" />
|
||||
<argument index="0" name="right" type="float" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator **">
|
||||
<return type="int" />
|
||||
<argument index="0" name="right" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator +">
|
||||
<return type="String" />
|
||||
<argument index="0" name="right" type="String" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue