Merge pull request #55921 from rcorre/docscroll3

This commit is contained in:
Rémi Verschelde 2021-12-14 13:53:19 +01:00 committed by GitHub
commit e6887499e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,12 @@
<argument index="0" name="control" type="Control" /> <argument index="0" name="control" type="Control" />
<description> <description>
Ensures the given [code]control[/code] is visible (must be a direct or indirect child of the ScrollContainer). Used by [member follow_focus]. Ensures the given [code]control[/code] is visible (must be a direct or indirect child of the ScrollContainer). Used by [member follow_focus].
[b]Note:[/b] This will not work on a node that was just added during the same frame. If you want to scroll to a newly added child, you must wait until the next frame using [signal SceneTree.idle_frame]:
[codeblock]
add_child(child_node)
yield(get_tree(), "idle_frame")
ensure_control_visible(child_node)
[/codeblock]
</description> </description>
</method> </method>
<method name="get_h_scrollbar"> <method name="get_h_scrollbar">