Class: TweenManager
Tweening.TweenManager
This class is responsible for managing and controlling running tweens.
Methods
completeAll
▸ Static
completeAll(): void
Complete all running tweens.
Returns
void
Defined in
src/tweening/TweenManager.ts:123
completeAllByTag
▸ Static
completeAllByTag(tag
): void
Complete all running tweens with a specific tag.
Parameters
Name | Type | Description |
---|---|---|
tag | string | The tag to filter running tweens. |
Returns
void
Defined in
src/tweening/TweenManager.ts:133
stopAll
▸ Static
stopAll(): void
Stop all running tweens.
Returns
void
Defined in
src/tweening/TweenManager.ts:102
stopAllByTag
▸ Static
stopAllByTag(tag
): void
Stop all running tweens with a specific tag.
Parameters
Name | Type | Description |
---|---|---|
tag | string | The tag to filter running tweens. |
Returns
void
Defined in
src/tweening/TweenManager.ts:112
stopById
▸ Static
stopById(id
): void
Stop the running tween with a specific id.
Parameters
Name | Type | Description |
---|---|---|
id | string | Tween identifier. |
Returns
void