(application, delta)
| 408 | application.quit(); |
| 409 | } |
| 410 | onRotate(application, delta) { |
| 411 | let rotation = this.deviceRotation + delta; |
| 412 | if (rotation < 0) rotation += 360; |
| 413 | this.deviceRotation = rotation % 360;; |
| 414 | this.quitScreen(); |
| 415 | this.selectDevice(application, this.deviceIndex); |
| 416 | this.launchScreen(); |
| 417 | } |
| 418 | onSelectDevice(application, index) { |
| 419 | this.quitScreen(); |
| 420 | this.selectDevice(application, index); |
nothing calls this directly
no test coverage detected