(
tween: TweenInstance<float> | TweenInstance<Array<float>>
)
| 402 | } |
| 403 | |
| 404 | _removeActiveTween( |
| 405 | tween: TweenInstance<float> | TweenInstance<Array<float>> |
| 406 | ): void { |
| 407 | const index = this._activeTweens.findIndex( |
| 408 | (activeTween) => activeTween === tween |
| 409 | ); |
| 410 | this._activeTweens.splice(index, 1); |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * Get tween progress. |
no outgoing calls
no test coverage detected