(float x, float y, float screenX, float screenY)
| 191 | } |
| 192 | |
| 193 | public void onMouseMove(float x, float y, float screenX, float screenY) { |
| 194 | mouseX = x; |
| 195 | mouseY = y; |
| 196 | if (leftMouse) { |
| 197 | outerX = screenX - screenStartX; |
| 198 | outerY = screenY - screenStartY; |
| 199 | ExternalAPI.fireUserEvent(2); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | public void onMouseDown(String button) { |
| 204 | leftMouse = true; |