diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-25 10:33:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-25 10:33:45 +0200 |
commit | 1481d299ea97fa1311a75a9ee39eb97d624a8619 (patch) | |
tree | c42928f05a4050fdb6d5eb8361469e423fd80e76 /modules | |
parent | ffca740185d5e34dbb41af825aeb4d04407894e1 (diff) | |
parent | d844e306147689c3f02473b3dd5d592bdf141023 (diff) |
Merge pull request #30776 from akien-mga/editor-configurable-float-step
Inspector: Make default float step configurable
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/doc_classes/@GDScript.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index 62a3794c6d..f65f2a8935 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -1095,7 +1095,7 @@ <argument index="0" name="step" type="float"> </argument> <description> - Returns the position of the first non-zero digit, after the decimal point. + Returns the position of the first non-zero digit, after the decimal point. Note that the maximum return value is 10, which is a design decision in the implementation. [codeblock] # n is 0 n = step_decimals(5) |