clarify the meaning of "deferred"

This commit is contained in:
L4Vo5
2023-05-31 05:55:44 -03:00
parent a3c49ad2f0
commit 2747dd35e7
4 changed files with 28 additions and 14 deletions

View File

@ -97,11 +97,12 @@
<method name="call_deferred" qualifiers="vararg const">
<return type="void" />
<description>
Calls the method represented by this [Callable] in deferred mode, i.e. during the idle frame. Arguments can be passed and should match the method's signature.
Calls the method represented by this [Callable] in deferred mode, i.e. at the end of the current frame. Arguments can be passed and should match the method's signature.
[codeblock]
func _ready():
grab_focus.call_deferred()
[/codeblock]
See also [method Object.call_deferred].
</description>
</method>
<method name="callv" qualifiers="const">