diff options
| author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2022-03-03 13:12:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-03 13:12:29 +0100 |
| commit | 57838fc0eee8f4137d2074e64f9d90518214e5a8 (patch) | |
| tree | cd9f924e7e721cb46e6d0dadcf95ade4db6ae0bf /modules/gdscript/doc_classes/@GDScript.xml | |
| parent | f3bb33978e77a7c0aaaac4e8b67c319b4460ae0e (diff) | |
| parent | bac8e451c056173133d5f0f8c8706749e85bce35 (diff) | |
Merge pull request #58262 from Sauermann/fix-range-doc
Describe usage of float in range documentation
Diffstat (limited to 'modules/gdscript/doc_classes/@GDScript.xml')
| -rw-r--r-- | modules/gdscript/doc_classes/@GDScript.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index 4d6320d8c3..d9fab01dce 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -186,6 +186,7 @@ <description> Returns an array with the given range. Range can be 1 argument [code]N[/code] (0 to [code]N[/code] - 1), two arguments ([code]initial[/code], [code]final - 1[/code]) or three arguments ([code]initial[/code], [code]final - 1[/code], [code]increment[/code]). Returns an empty array if the range isn't valid (e.g. [code]range(2, 5, -1)[/code] or [code]range(5, 5, 1)[/code]). Returns an array with the given range. [code]range()[/code] can have 1 argument N ([code]0[/code] to [code]N - 1[/code]), two arguments ([code]initial[/code], [code]final - 1[/code]) or three arguments ([code]initial[/code], [code]final - 1[/code], [code]increment[/code]). [code]increment[/code] can be negative. If [code]increment[/code] is negative, [code]final - 1[/code] will become [code]final + 1[/code]. Also, the initial value must be greater than the final value for the loop to run. + [code]range()(/code] converts all arguments to [int] before processing. [codeblock] print(range(4)) print(range(2, 5)) @@ -211,6 +212,17 @@ 6 3 [/codeblock] + To iterate over [float], convert them in the loop. + [codeblock] + for i in range (3, 0, -1): + print(i / 10.0) + [/codeblock] + Output: + [codeblock] + 0.3 + 0.2 + 0.1 + [/codeblock] </description> </method> <method name="str" qualifiers="vararg"> |