Attention: Here be dragons

This is the latest (unstable) version of this documentation, which may document features not available in or compatible with released stable versions of Godot.

CallbackTweener

Inherits: Tweener < RefCounted < Object

Calls the specified method after optional delay.

Description

CallbackTweener is used to call a method in a tweening sequence. See Tween.tween_callback for more usage information.

The tweener will finish automatically if the callback's target object is freed.

Note: Tween.tween_callback is the only correct way to create CallbackTweener. Any CallbackTweener created manually will not function correctly.

Methods

CallbackTweener

set_delay(delay: float)


Method Descriptions

CallbackTweener set_delay(delay: float)

Makes the callback call delayed by given time in seconds.

Example:

var tween = get_tree().create_tween()
tween.tween_callback(queue_free).set_delay(2) #this will call queue_free() after 2 seconds

User-contributed notes

Please read the User-contributed notes policy before submitting a comment.