* Get tween progress. * @param identifier Unique id to identify the tween * @returns Progress of playing tween animation (between 0.0 and 1.0)
(identifier: string)
| 416 | * @returns Progress of playing tween animation (between 0.0 and 1.0) |
| 417 | */ |
| 418 | getProgress(identifier: string): float { |
| 419 | const tween = this._tweens.get(identifier); |
| 420 | if (!tween) { |
| 421 | return 0; |
| 422 | } |
| 423 | return tween.getProgress(); |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * Get tween value. |
nothing calls this directly
no test coverage detected