()
| 126 | } |
| 127 | |
| 128 | async pause() { |
| 129 | if (this.started && this.running) { |
| 130 | this.running = false; |
| 131 | this.onPlayStateChange("realtimePerformancePaused"); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | async resume() { |
| 136 | if (this.started && !this.running) { |
no test coverage detected