You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nui-libgdx/src/main/java/org/terasology/nui/backends/libgdx/LibGDXMouseDevice.java
+29-11Lines changed: 29 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,13 @@ public class LibGDXMouseDevice implements MouseDevice {
31
31
// The maximum number of touches that LibGDX supports on Android is 20.
32
32
// See https://github.com/libgdx/libgdx/blob/5eac848925d6e1f24070f887cbfaf99bb8bc4a63/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/AndroidInput.java#L99
33
33
privatestaticfinalintMAX_POINTERS = 20;
34
+
// The default value has been calibrated by trial and error, mostly. You can set your own stickiness in the constructor.
0 commit comments