Implement exponential operator (**) to GDScript/Expressions
This commit is contained in:
committed by
Yuri Rubinsky
parent
9963ae3553
commit
dbd7a31507
@ -124,6 +124,18 @@
|
||||
Multiplies a [float] and an [int]. The result is a [float].
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator **">
|
||||
<return type="float" />
|
||||
<argument index="0" name="right" type="float" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator **">
|
||||
<return type="float" />
|
||||
<argument index="0" name="right" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator +">
|
||||
<return type="float" />
|
||||
<argument index="0" name="right" type="float" />
|
||||
|
||||
Reference in New Issue
Block a user