()
| 99 | private active = false; |
| 100 | |
| 101 | private get startFrame() { |
| 102 | return Math.min( |
| 103 | this.playback.duration, |
| 104 | this.status.secondsToFrames(this.startTime), |
| 105 | ); |
| 106 | } |
| 107 | |
| 108 | private get endFrame() { |
| 109 | return Math.min( |
nothing calls this directly
no test coverage detected