Merge pull request #38992 from Dragoncraft89/master

Error handling functions for GdScript
This commit is contained in:
Rémi Verschelde 2021-08-11 18:43:27 +02:00 committed by GitHub
commit d7a39cc346
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 106 additions and 0 deletions

View file

@ -212,6 +212,15 @@
Easing function, based on exponent. The curve values are: 0 is constant, 1 is linear, 0 to 1 is ease-in, 1+ is ease out. Negative values are in-out/out in.
</description>
</method>
<method name="error_string">
<return type="String">
</return>
<argument index="0" name="error" type="int">
</argument>
<description>
Returns a human-readable name for the given error code.
</description>
</method>
<method name="exp">
<return type="float" />
<argument index="0" name="x" type="float" />