diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-31 08:04:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-31 08:04:46 +0100 |
commit | ac38f0782fbf781265ec34a43196e3ea157f3696 (patch) | |
tree | 8c3497a502003d30232e9609d0b1f5b894ccf8f7 /doc/classes/ProjectSettings.xml | |
parent | 0ef3a8b5ca7c1a54f96c6d6ea9909b90ac9bd4de (diff) | |
parent | e72d6cf54a7d93082f5e0600276b7114d868de07 (diff) |
Merge pull request #33195 from conankzhang/doc-project-settings
Add descriptions to set_initial_value and set_setting.
Diffstat (limited to 'doc/classes/ProjectSettings.xml')
-rw-r--r-- | doc/classes/ProjectSettings.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index fa735b8918..eb937df286 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -145,6 +145,7 @@ <argument index="1" name="value" type="Variant"> </argument> <description> + Sets the specified property's initial value. This is the value the property reverts to. </description> </method> <method name="set_order"> @@ -166,6 +167,11 @@ <argument index="1" name="value" type="Variant"> </argument> <description> + Sets the value of a setting. + [b]Example:[/b] + [codeblock] + ProjectSettings.set_setting("application/config/name", "Example") + [/codeblock] </description> </method> </methods> |