diff options
author | VolTer <mew.pur.pur@abv.bg> | 2023-04-30 16:26:09 +0200 |
---|---|---|
committer | VolTer <mew.pur.pur@abv.bg> | 2023-05-28 14:24:54 +0200 |
commit | 151a4ba6a59f6e965bb56ce8fbc75b14d056fa79 (patch) | |
tree | e5d78c825e09d7718156870377155dbc2331518a /doc/classes/Tree.xml | |
parent | a67d37f7cffe7f31c68e971280950d487ea99e2c (diff) | |
download | redot-engine-151a4ba6a59f6e965bb56ce8fbc75b14d056fa79.tar.gz |
Overhaul the top sections of the class reference (GUI classes)
Diffstat (limited to 'doc/classes/Tree.xml')
-rw-r--r-- | doc/classes/Tree.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/Tree.xml b/doc/classes/Tree.xml index afe0088a26..48171349b2 100644 --- a/doc/classes/Tree.xml +++ b/doc/classes/Tree.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="Tree" inherits="Control" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> <brief_description> - Control to show a tree of items. + A control used to show a set of internal [TreeItem]s in a hierarchical structure. </brief_description> <description> - This shows a tree of items that can be selected, expanded and collapsed. The tree can have multiple columns with custom controls like text editing, buttons and popups. It can be useful for structured displays and interactions. - Trees are built via code, using [TreeItem] objects to create the structure. They have a single root but multiple roots can be simulated if a dummy hidden root is added. + A control used to show a set of internal [TreeItem]s in a hierarchical structure. The tree items can be selected, expanded and collapsed. The tree can have multiple columns with custom controls like [LineEdit]s, buttons and popups. It can be useful for structured displays and interactions. + Trees are built via code, using [TreeItem] objects to create the structure. They have a single root, but multiple roots can be simulated with [member hide_root]: [codeblocks] [gdscript] func _ready(): |