Update to libGDX 1.9.13-SNAPSHOT

This commit is contained in:
MiChinao
2020-11-11 10:42:18 +01:00
parent bbd5d3758c
commit 5a8fa24938
16 changed files with 34 additions and 39 deletions
+2 -2
View File
@@ -519,8 +519,8 @@ public class Box2dLightTest extends InputAdapter implements ApplicationListener
}
@Override
public boolean scrolled(int amount) {
camera.rotate((float) amount * 3f, 0, 0, 1);
public boolean scrolled(float amountX, float amountY) {
camera.rotate((float) amountX * 3f, 0, 0, 1);
return false;
}