class-description NEWS COMMUNITY STORE LABS SIGN UP LOGIN LOGOUT ROKOJORI NEWSLETTER SIGN UP LOGIN LOGOUT NEWS COMMUNITY STORE LABS TOGGLE FULLSCREEN VOLLBILD AN/AUS ObjectRefCounted Tween
Lightweight object used for general-purpose animation via script, using Tweeners.

Tweens are mostly useful for animations requiring a numerical property to be interpolated over a range of values. The name tween comes from in-betweening, an animation technique where you specify keyframes and the computer interpolates the frames that appear between them. Animating something with a Tween is called tweening.

Tween is more suited than AnimationPlayer for animations where you don't know the final values in advance. For example, interpolating a dynamically-chosen camera zoom value is best done with a Tween; it would be difficult to do the same thing with an AnimationPlayer node. Tweens are also more light-weight than AnimationPlayer, so they are very much suited for simple animations or general tasks that don't require visual tweaking provided by the editor. They can be used in a "fire-and-forget" manner for some logic that normally would be done by code. You can e.g. make something shoot periodically by using a looped CallbackTweener with a delay.

A Tween can be created by using either SceneTree.create_tween or Node.create_tween. Tweens created manually (i.e. by using Tween.new()) are invalid and can't be used for tweening values.

A tween animation is created by adding Tweeners to the Tween object, using tween_property, tween_interval, tween_callback or tween_method:

var tween = get_tree().create_tween() tween.tween_property($Sprite, "modulate", Color.RED, 1) tween.tween_property($Sprite, "scale", Vector2(), 1) tween.tween_callback($Sprite.queue_free)

This sequence will make the $Sprite node turn red, then shrink, before finally calling Node.queue_free to free the sprite. Tweeners are executed one after another by default. This behavior can be changed using parallel and set_parallel.

When a Tweener is created with one of the tween_* methods, a chained method call can be used to tweak the properties of this Tweener. For example, if you want to set a different transition type in the above example, you can use set_trans:

var tween = get_tree().create_tween() tween.tween_property($Sprite, "modulate", Color.RED, 1).set_trans(Tween.TRANS_SINE) tween.tween_property($Sprite, "scale", Vector2(), 1).set_trans(Tween.TRANS_BOUNCE) tween.tween_callback($Sprite.queue_free)

Most of the Tween methods can be chained this way too. In the following example the Tween is bound to the running script's node and a default transition is set for its Tweeners:

var tween = get_tree().create_tween().bind_node(self).set_trans(Tween.TRANS_ELASTIC) tween.tween_property($Sprite, "modulate", Color.RED, 1) tween.tween_property($Sprite, "scale", Vector2(), 1) tween.tween_callback($Sprite.queue_free)

Another interesting use for Tweens is animating arbitrary sets of objects:

var tween = create_tween() for sprite in get_children(): tween.tween_property(sprite, "position", Vector2(0, 0), 1)

In the example above, all children of a node are moved one after another to position (0, 0).

You should avoid using more than one Tween per object's property. If two or more tweens animate one property at the same time, the last one created will take priority and assign the final value. If you want to interrupt and restart an animation, consider assigning the Tween to a variable:

var tween func animate(): if tween: tween.kill() # Abort the previous animation. tween = create_tween()

Some Tweeners use transitions and eases. The first accepts a TransitionType constant, and refers to the way the timing of the animation is handled (see easings.net for some examples). The second accepts an EaseType constant, and controls where the trans_type is applied to the interpolation (in the beginning, the end, or both). If you don't know which transition and easing to pick, you can try different TransitionType constants with EASE_IN_OUT, and use the one that looks best.

Tween easing and transition types cheatsheet

finished finished<>():finished

Emitted when the Tween has finished all tweening. Never emitted when the Tween is set to infinite looping (see set_loops).

loop_finished loop_finished<>( int loop_count=, loop_count:int=, ):loop_finished

Emitted when a full loop is complete (see set_loops), providing the loop index. This signal is not emitted after the final loop, use finished instead for this case.

step_finished step_finished<>( int idx=, idx:int=, ):step_finished

Emitted when one step of the Tween is complete, providing the step index. One step is either a single Tweener or a group of Tweeners running in parallel.

Enum TweenProcessMode<>():Enum

TWEEN_PROCESS_PHYSICS = 0

The Tween updates after each physics frame (see Node._physics_process).


TWEEN_PROCESS_IDLE = 1

The Tween updates after each process frame (see Node._process).

Enum TweenPauseMode<>():Enum

TWEEN_PAUSE_BOUND = 0

If the Tween has a bound node, it will process when that node can process (see Node.process_mode). Otherwise it's the same as TWEEN_PAUSE_STOP.


TWEEN_PAUSE_STOP = 1

If SceneTree is paused, the Tween will also pause.


TWEEN_PAUSE_PROCESS = 2

The Tween will process regardless of whether SceneTree is paused.

Enum TransitionType<>():Enum

TRANS_LINEAR = 0

The animation is interpolated linearly.


TRANS_SINE = 1

The animation is interpolated using a sine function.


TRANS_QUINT = 2

The animation is interpolated with a quintic (to the power of 5) function.


TRANS_QUART = 3

The animation is interpolated with a quartic (to the power of 4) function.


TRANS_QUAD = 4

The animation is interpolated with a quadratic (to the power of 2) function.


TRANS_EXPO = 5

The animation is interpolated with an exponential (to the power of x) function.


TRANS_ELASTIC = 6

The animation is interpolated with elasticity, wiggling around the edges.


TRANS_CUBIC = 7

The animation is interpolated with a cubic (to the power of 3) function.


TRANS_CIRC = 8

The animation is interpolated with a function using square roots.


TRANS_BOUNCE = 9

The animation is interpolated by bouncing at the end.


TRANS_BACK = 10

The animation is interpolated backing out at ends.


TRANS_SPRING = 11

The animation is interpolated like a spring towards the end.

Enum EaseType<>():Enum

EASE_IN = 0

The interpolation starts slowly and speeds up towards the end.


EASE_OUT = 1

The interpolation starts quickly and slows down towards the end.


EASE_IN_OUT = 2

A combination of EASE_IN and EASE_OUT. The interpolation is slowest at both ends.


EASE_OUT_IN = 3

A combination of EASE_IN and EASE_OUT. The interpolation is fastest at both ends.

Tween bind_node<>( Node node=, node:Node=, ):Tween

Binds this Tween with the given node. Tweens are processed directly by the SceneTree, so they run independently of the animated nodes. When you bind a Node with the Tween, the Tween will halt the animation when the object is not inside tree and the Tween will be automatically killed when the bound object is freed. Also TWEEN_PAUSE_BOUND will make the pausing behavior dependent on the bound node.

For a shorter way to create and bind a Tween, you can use Node.create_tween.

Tween chain<>():Tween

Used to chain two Tweeners after set_parallel is called with true.

var tween = create_tween().set_parallel(true) tween.tween_property(...) tween.tween_property(...) # Will run parallelly with above. tween.chain().tween_property(...) # Will run after two above are finished.
bool custom_step<>( float delta=, delta:float=, ):bool

Processes the Tween by the given delta value, in seconds. This is mostly useful for manual control when the Tween is paused. It can also be used to end the Tween animation immediately, by setting delta longer than the whole duration of the Tween animation.

Returns true if the Tween still has Tweeners that haven't finished.

int get_loops_left<>():int

Returns the number of remaining loops for this Tween (see set_loops). A return value of -1 indicates an infinitely looping Tween, and a return value of 0 indicates that the Tween has already finished.

float get_total_elapsed_time<>():float

Returns the total time in seconds the Tween has been animating (i.e. the time since it started, not counting pauses etc.). The time is affected by set_speed_scale, and stop will reset it to 0.

Note: As it results from accumulating frame deltas, the time returned after the Tween has finished animating will be slightly greater than the actual Tween duration.

Variant interpolate_value<>( Variant initial_value=, initial_value:Variant=, Variant delta_value=, delta_value:Variant=, float elapsed_time=, elapsed_time:float=, float duration=, duration:float=, TransitionType trans_type=, trans_type:TransitionType=, EaseType ease_type=, ease_type:EaseType=, ):Variant

This method can be used for manual interpolation of a value, when you don't want Tween to do animating for you. It's similar to @GlobalScope.lerp, but with support for custom transition and easing.

initial_value is the starting value of the interpolation.

delta_value is the change of the value in the interpolation, i.e. it's equal to final_value - initial_value.

elapsed_time is the time in seconds that passed after the interpolation started and it's used to control the position of the interpolation. E.g. when it's equal to half of the duration, the interpolated value will be halfway between initial and final values. This value can also be greater than duration or lower than 0, which will extrapolate the value.

duration is the total time of the interpolation.

Note: If duration is equal to 0, the method will always return the final value, regardless of elapsed_time provided.

bool is_running<>():bool

Returns whether the Tween is currently running, i.e. it wasn't paused and it's not finished.

bool is_valid<>():bool

Returns whether the Tween is valid. A valid Tween is a Tween contained by the scene tree (i.e. the array from SceneTree.get_processed_tweens will contain this Tween). A Tween might become invalid when it has finished tweening, is killed, or when created with Tween.new(). Invalid Tweens can't have Tweeners appended.

void kill<>():void

Aborts all tweening operations and invalidates the Tween.

Tween parallel<>():Tween

Makes the next Tweener run parallelly to the previous one.

Example:

var tween = create_tween() tween.tween_property(...) tween.parallel().tween_property(...) tween.parallel().tween_property(...)

All Tweeners in the example will run at the same time.

You can make the Tween parallel by default by using set_parallel.

void pause<>():void

Pauses the tweening. The animation can be resumed by using play.

Note: If a Tween is paused and not bound to any node, it will exist indefinitely until manually started or invalidated. If you lose a reference to such Tween, you can retrieve it using SceneTree.get_processed_tweens.

void play<>():void

Resumes a paused or stopped Tween.

Tween set_ease<>( EaseType ease=, ease:EaseType=, ):Tween

Sets the default ease type for PropertyTweeners and MethodTweeners animated by this Tween.

If not specified, the default value is EASE_IN_OUT.

Tween set_loops<>( int loops=0, loops:int=0, ):Tween

Sets the number of times the tweening sequence will be repeated, i.e. set_loops(2) will run the animation twice.

Calling this method without arguments will make the Tween run infinitely, until either it is killed with kill, the Tween's bound node is freed, or all the animated objects have been freed (which makes further animation impossible).

Warning: Make sure to always add some duration/delay when using infinite loops. To prevent the game freezing, 0-duration looped animations (e.g. a single CallbackTweener with no delay) are stopped after a small number of loops, which may produce unexpected results. If a Tween's lifetime depends on some node, always use bind_node.

Tween set_parallel<>( bool parallel=true, parallel:bool=true, ):Tween

If parallel is true, the Tweeners appended after this method will by default run simultaneously, as opposed to sequentially.

Tween set_pause_mode<>( TweenPauseMode mode=, mode:TweenPauseMode=, ):Tween

Determines the behavior of the Tween when the SceneTree is paused. Check TweenPauseMode for options.

Default value is TWEEN_PAUSE_BOUND.

Tween set_process_mode<>( TweenProcessMode mode=, mode:TweenProcessMode=, ):Tween

Determines whether the Tween should run after process frames (see Node._process) or physics frames (see Node._physics_process).

Default value is TWEEN_PROCESS_IDLE.

Tween set_speed_scale<>( float speed=, speed:float=, ):Tween

Scales the speed of tweening. This affects all Tweeners and their delays.

Tween set_trans<>( TransitionType trans=, trans:TransitionType=, ):Tween

Sets the default transition type for PropertyTweeners and MethodTweeners animated by this Tween.

If not specified, the default value is TRANS_LINEAR.

void stop<>():void

Stops the tweening and resets the Tween to its initial state. This will not remove any appended Tweeners.

Note: If a Tween is stopped and not bound to any node, it will exist indefinitely until manually started or invalidated. If you lose a reference to such Tween, you can retrieve it using SceneTree.get_processed_tweens.

CallbackTweener tween_callback<>( Callable callback=, callback:Callable=, ):CallbackTweener

Creates and appends a CallbackTweener. This method can be used to call an arbitrary method in any object. Use Callable.bind to bind additional arguments for the call.

Example: Object that keeps shooting every 1 second:

var tween = get_tree().create_tween().set_loops() tween.tween_callback(shoot).set_delay(1)

Example: Turning a sprite red and then blue, with 2 second delay:

var tween = get_tree().create_tween() tween.tween_callback($Sprite.set_modulate.bind(Color.RED)).set_delay(2) tween.tween_callback($Sprite.set_modulate.bind(Color.BLUE)).set_delay(2)
IntervalTweener tween_interval<>( float time=, time:float=, ):IntervalTweener

Creates and appends an IntervalTweener. This method can be used to create delays in the tween animation, as an alternative to using the delay in other Tweeners, or when there's no animation (in which case the Tween acts as a timer). time is the length of the interval, in seconds.

Example: Creating an interval in code execution:

# ... some code await create_tween().tween_interval(2).finished # ... more code

Example: Creating an object that moves back and forth and jumps every few seconds:

var tween = create_tween().set_loops() tween.tween_property($Sprite, "position:x", 200.0, 1).as_relative() tween.tween_callback(jump) tween.tween_interval(2) tween.tween_property($Sprite, "position:x", -200.0, 1).as_relative() tween.tween_callback(jump) tween.tween_interval(2)
MethodTweener tween_method<>( Callable method=, method:Callable=, Variant from=, from:Variant=, Variant to=, to:Variant=, float duration=, duration:float=, ):MethodTweener

Creates and appends a MethodTweener. This method is similar to a combination of tween_callback and tween_property. It calls a method over time with a tweened value provided as an argument. The value is tweened between from and to over the time specified by duration, in seconds. Use Callable.bind to bind additional arguments for the call. You can use MethodTweener.set_ease and MethodTweener.set_trans to tweak the easing and transition of the value or MethodTweener.set_delay to delay the tweening.

Example: Making a 3D object look from one point to another point:

var tween = create_tween() tween.tween_method(look_at.bind(Vector3.UP), Vector3(-1, 0, -1), Vector3(1, 0, -1), 1) # The look_at() method takes up vector as second argument.

Example: Setting the text of a Label, using an intermediate method and after a delay:

func _ready(): var tween = create_tween() tween.tween_method(set_label_text, 0, 10, 1).set_delay(1) func set_label_text(value: int): $Label.text = "Counting " + str(value)
PropertyTweener tween_property<>( Object object=, object:Object=, NodePath property=, property:NodePath=, Variant final_val=, final_val:Variant=, float duration=, duration:float=, ):PropertyTweener

Creates and appends a PropertyTweener. This method tweens a property of an object between an initial value and final_val in a span of time equal to duration, in seconds. The initial value by default is the property's value at the time the tweening of the PropertyTweener starts.

Example:

var tween = create_tween() tween.tween_property($Sprite, "position", Vector2(100, 200), 1) tween.tween_property($Sprite, "position", Vector2(200, 300), 1)

will move the sprite to position (100, 200) and then to (200, 300). If you use PropertyTweener.from or PropertyTweener.from_current, the starting position will be overwritten by the given value instead. See other methods in PropertyTweener to see how the tweening can be tweaked further.

Note: You can find the correct property name by hovering over the property in the Inspector. You can also provide the components of a property directly by using "property:component" (eg. position:x), where it would only apply to that particular component.

Example: Moving an object twice from the same position, with different transition types:

var tween = create_tween() tween.tween_property($Sprite, "position", Vector2.RIGHT * 300, 1).as_relative().set_trans(Tween.TRANS_SINE) tween.tween_property($Sprite, "position", Vector2.RIGHT * 300, 1).as_relative().from_current().set_trans(Tween.TRANS_EXPO)



All social media brands are registrated trademarks and belong to their respective owners.





CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
CONTACT IMPRINT TERMS OF USE PRIVACY © ROKOROJI ® 2021 rokojori.com
We are using cookies on this site. Read more... Wir benutzen Cookies auf dieser Seite. Mehr lesen...