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

Remove empty [b]Example:[/b] lines from the class reference

This commit is contained in:
Micky
2024-08-18 13:31:57 +02:00
parent 1bd740d18d
commit 4ce5856384
29 changed files with 32 additions and 78 deletions

View File

@@ -16,10 +16,10 @@
<param index="0" name="delay" type="float" />
<description>
Makes the callback call delayed by given time in seconds.
[b]Example:[/b]
[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) #this will call queue_free() after 2 seconds
tween.tween_callback(queue_free).set_delay(2)
[/codeblock]
</description>
</method>