1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Clean up more [b]Example:[/b] lines from the class reference

This commit is contained in:
Micky
2024-09-06 00:25:59 +02:00
parent 835808ed8f
commit 932b1c434c
29 changed files with 60 additions and 65 deletions

View File

@@ -16,7 +16,7 @@
<param index="0" name="delay" type="float" />
<description>
Makes the callback call delayed by given time in seconds.
[b]Example:[/b] Call [method Node.queue_free] after 2 seconds.
[b]Example:[/b] Call [method Node.queue_free] after 2 seconds:
[codeblock]
var tween = get_tree().create_tween()
tween.tween_callback(queue_free).set_delay(2)