Betalord
Betalord
TextField has a 'keyboard' member which it uses to show keyboard (on Android), however in order to hide the keyboard, it uses hardcoded call: ``Gdx.input.setOnscreenKeyboardVisible(false);`` which makes no sense -...
TextField widget has a default modifier set for its 'listener' field, which makes it impossible to trigger key event when extending the class, or even override keyTyped() method in TextField.TextFieldClickListener...
In LwjglGraphics.setupDisplay() there is a code that iterates all possible display modes and chooses the best one for fullscreen mode. This is the part of the code I am referring...
com.badlogic.gdx.scenes.scene2d.ui.Dialog class has a method key() which adds a new InputListener that responds to keyDown event which returns a boolean result. It currently returns 'false', however it should return 'true'...
Hi, checking my server's logs, I see a lot of exceptions of this type: com.esotericsoftware.kryonet.KryoNetException: Unable to read object larger than read buffer: 1195725856 at com.esotericsoftware.kryonet.TcpConnection.readObject(TcpConnection.java:118) at com.esotericsoftware.kryonet.Server.update(Server.java:198) at com.betalord.sgx.network.ServerProcessor.run(ServerProcessor.java:90)...
In Client.java (https://github.com/EsotericSoftware/kryonet/blob/master/src/com/esotericsoftware/kryonet/Client.java) at line 53, there is a call: `System.setProperty("java.net.preferIPv6Addresses", "false");` Now I don't think this is necessary. On my phone, it returns this error: > 03-26 10:56:33.042: E/System(11677):...
Fix for font scaling problem (as suggested by 'evilentity' on Discord). Fixes a problem with limited float precision calculations which can cause some undesirable behaviour in certain widgets, as described...
After encountering a weird bug that can be see in the attached video (SelectBox enabling vertical scrollbar on first drop down, but not on subsequent drop downs: [https://www.youtube.com/watch?v=PJNcYH4d9gk](https://www.youtube.com/watch?v=PJNcYH4d9gk)), I debugged...
I have a following situation: I set value of my object to some initial value and then interpolate that value. Here is the pseudo code: ``` Timeline.createSequence() .push(Tween.set(zooming, TweenTypes.ZOOM) .target(10.0f)...