summaryrefslogtreecommitdiffstats
path: root/doc/classes/FileDialog.xml
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-03-21 10:42:38 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-03-28 11:53:03 +0200
commit61f7145f4367d6fe6b7868706bdf90d41af52e68 (patch)
tree0eae2cae201293121368a06255c78ab16aca7ecc /doc/classes/FileDialog.xml
parent86415f02452dbf6de85325d3321fd7ec7fba9e94 (diff)
downloadredot-engine-61f7145f4367d6fe6b7868706bdf90d41af52e68.tar.gz
[Native File Dialog] Add support for using native dialogs in the editor.
Diffstat (limited to 'doc/classes/FileDialog.xml')
-rw-r--r--doc/classes/FileDialog.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/classes/FileDialog.xml b/doc/classes/FileDialog.xml
index 9065adc0e0..dec3160ffe 100644
--- a/doc/classes/FileDialog.xml
+++ b/doc/classes/FileDialog.xml
@@ -23,9 +23,10 @@
<return type="void" />
<param index="0" name="name" type="String" />
<param index="1" name="values" type="PackedStringArray" />
- <param index="2" name="index" type="int" />
+ <param index="2" name="default_value_index" type="int" />
<description>
Adds an additional [OptionButton] to the file dialog. If [param values] is empty, a [CheckBox] is added instead.
+ [param default_value_index] should be an index of the value in the [param values]. If [param values] is empty it should be either [code]1[/code] (checked), or [code]0[/code] (unchecked).
</description>
</method>
<method name="clear_filters">
@@ -90,7 +91,7 @@
<method name="set_option_default">
<return type="void" />
<param index="0" name="option" type="int" />
- <param index="1" name="index" type="int" />
+ <param index="1" name="default_value_index" type="int" />
<description>
Sets the default value index of the [OptionButton] or [CheckBox] with index [param option].
</description>