fix: added a missing key on Bépo layout

This commit is contained in:
minjaesong
2024-09-06 15:36:17 +09:00
parent 56b98f3086
commit 849271328d
2 changed files with 12 additions and 3 deletions

View File

@@ -204,6 +204,15 @@ class UIKeyboardControlPanel(remoCon: UIRemoCon?) : UICanvas() {
presetSelector.update(delta)
controlPalette.update(delta)
// TEST CODE
/*val pushedKeys = ArrayList<Int>()
for (k in 0..255) {
if (Gdx.input.isKeyPressed(k))
pushedKeys.add(k)
}
println("Pushed Keys: $pushedKeys")
*/
}
override fun renderImpl(frameDelta: Float, batch: SpriteBatch, camera: OrthographicCamera) {