mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Tree recursive folding
This commit is contained in:
@@ -321,6 +321,14 @@
|
||||
Returns the [Tree] that owns this TreeItem.
|
||||
</description>
|
||||
</method>
|
||||
<method name="is_any_collapsed">
|
||||
<return type="bool" />
|
||||
<param index="0" name="only_visible" type="bool" default="false" />
|
||||
<description>
|
||||
Returns [code]true[/code] if this [TreeItem], or any of its descendants, is collapsed.
|
||||
If [param only_visible] is [code]true[/code] it ignores non-visible [TreeItem]s.
|
||||
</description>
|
||||
</method>
|
||||
<method name="is_button_disabled" qualifiers="const">
|
||||
<return type="bool" />
|
||||
<param index="0" name="column" type="int" />
|
||||
@@ -442,6 +450,13 @@
|
||||
If [code]true[/code], the given [param column] is checked. Clears column's indeterminate status.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_collapsed_recursive">
|
||||
<return type="void" />
|
||||
<param index="0" name="enable" type="bool" />
|
||||
<description>
|
||||
Collapses or uncollapses this [TreeItem] and all the descendants of this item.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_custom_as_button">
|
||||
<return type="void" />
|
||||
<param index="0" name="column" type="int" />
|
||||
|
||||
Reference in New Issue
Block a user