(dx, dy)
| 37 | } |
| 38 | |
| 39 | addMove(dx, dy) { |
| 40 | this.updateCallback(-dx * this.SENSI_MOVE, -dy * this.SENSI_MOVE, 0, 0); |
| 41 | } |
| 42 | addRot(dx, dy) { |
| 43 | this.updateCallback(0, 0, dx * this.SENSI_ROT, -dy * this.SENSI_ROT); |
| 44 | } |
nothing calls this directly
no outgoing calls
no test coverage detected