()
| 15 | } |
| 16 | |
| 17 | initDate() { |
| 18 | let tmpD = {}; |
| 19 | tmpD.self = new Date(); // web window API |
| 20 | tmpD.year = 0; |
| 21 | tmpD.month = 0; |
| 22 | tmpD.day = 0; |
| 23 | tmpD.time = 0; |
| 24 | tmpD.tot = undefined; |
| 25 | return tmpD; |
| 26 | } |
| 27 | createCommand(_scene) { |
| 28 | _scene.input.keyboard.on('keydown_S', (_event) => { |
| 29 | if (_event.ctrlKey || _event.shiftKey) { |
no outgoing calls
no test coverage detected