diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-04-04 00:18:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-04 00:18:49 +0200 |
commit | bd016c8c4d51febb6b4da52a22ff7357ac400daa (patch) | |
tree | d7ab47b4816e9808da2928b3b8fd779b0b04cf3b /modules | |
parent | e243dfa9f6fd68740d6ae7bba02ae0114e791543 (diff) | |
parent | 0a8fdde9241c495a1a3b5f58c78910c9eaa12dee (diff) |
Merge pull request #75624 from YuriSizov/4.0-cherrypicks
Cherry-picks for the 4.0 branch (future 4.0.2) - 3rd batch
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 13d223b0d9..b05de11882 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -486,7 +486,7 @@ <param index="1" name="prefix" type="String" default="""" /> <description> Define a new group for the following exported properties. This helps to organize properties in the Inspector dock. Groups can be added with an optional [param prefix], which would make group to only consider properties that have this prefix. The grouping will break on the first property that doesn't have a prefix. The prefix is also removed from the property's name in the Inspector dock. - If no [param prefix] is provided, the every following property is added to the group. The group ends when then next group or category is defined. You can also force end a group by using this annotation with empty strings for parameters, [code]@export_group("", "")[/code]. + If no [param prefix] is provided, then every following property will be added to the group. The group ends when then next group or category is defined. You can also force end a group by using this annotation with empty strings for parameters, [code]@export_group("", "")[/code]. Groups cannot be nested, use [annotation @export_subgroup] to add subgroups within groups. See also [constant PROPERTY_USAGE_GROUP]. [codeblock] |