()
| 625 | } |
| 626 | |
| 627 | step(): void { |
| 628 | if (!this.isPlaying()) { |
| 629 | return; |
| 630 | } |
| 631 | this.elapsedTime = Math.min( |
| 632 | this.elapsedTime + this.timeSource.getElapsedTime() / 1000, |
| 633 | this.totalDuration |
| 634 | ); |
| 635 | this._updateValue(); |
| 636 | } |
| 637 | |
| 638 | protected abstract _updateValue(): void; |
| 639 | abstract getValue(): float; |
nothing calls this directly
no test coverage detected