* Tween has finished. * @param identifier Unique id to identify the tween
(identifier: string)
| 334 | * @param identifier Unique id to identify the tween |
| 335 | */ |
| 336 | hasFinished(identifier: string): boolean { |
| 337 | const tween = this._tweens.get(identifier); |
| 338 | return !!tween && tween.hasFinished(); |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Pause a tween. |
nothing calls this directly
no test coverage detected