Skip to main content

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

NameTypeDescription
tagstringThe 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

NameTypeDescription
tagstringThe 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

NameTypeDescription
idstringTween identifier.

Returns

void

Defined in

src/tweening/TweenManager.ts:90