Creates a new Tween instance with optional configuration.
Optionalconfig: Partial<TweenConfig<T>>The tween's configuration.
Gets the delay before the tween starts.
Gets the duration of the tween.
Indicates whether the tween has finished playing.
Gets the object being animated by the tween.
Gets the easing/transtion function of the tween.
Adds an animation for a specific numeric property of the target.
The property key to animate.
The final value for the property.
Sets a callback of the tween.
A function to call when the tween finishes
The current Tween instance for chaining.
Starts the tween animation.
Sets the delay before the tween starts.
Delay in milliseconds.
The current Tween instance for chaining.
Sets the total duration of the tween.
Duration in milliseconds.
The current Tween instance for chaining.
Sets the target object to be animated by the tween.
The object to animate.
The current Tween instance for chaining.
Sets the easing/transition function of the tween.
The easing/transition function.
The current Tween instance for chaining.
Stops the tween immediately, sets target properties to end values, and calls the completion callback.
A generic tweening class that animates numeric properties of an object over time using PixiJS's Ticker.