()
| 106 | } |
| 107 | |
| 108 | private get endFrame() { |
| 109 | return Math.min( |
| 110 | this.playback.duration, |
| 111 | this.status.secondsToFrames(this.endTime), |
| 112 | ); |
| 113 | } |
| 114 | |
| 115 | private get finished() { |
| 116 | return this.playback.finished || this.playback.frame >= this.endFrame; |
nothing calls this directly
no test coverage detected