* Tween is playing. * @param identifier Unique id to identify the tween
(identifier: string)
| 325 | * @param identifier Unique id to identify the tween |
| 326 | */ |
| 327 | isPlaying(identifier: string): boolean { |
| 328 | const tween = this._tweens.get(identifier); |
| 329 | return !!tween && tween.isPlaying(); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Tween has finished. |