CallbackTweener

Inherits: Tweener < Reference < Object Calls the specified method after optional delay.

Description

CallbackTweener is used to call a method in a tweening sequence. See SceneTreeTween.tween_callback for more usage information. Note: SceneTreeTween.tween_callback is the only correct way to create CallbackTweener. Any CallbackTweener created manually will not function correctly.

Methods

Method Descriptions

  • CallbackTweener set_delay ( float delay ) Makes the callback call delayed by given time in seconds. Example:
    1. var tween = get_tree().create_tween()tween.tween_callback(queue_free).set_delay(2) #this will call queue_free() after 2 seconds