mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 12:21:52 +09:00
fix: added a missing key on Bépo layout
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{"n":"FR Bépo","capslock":"shift","t":[[""],[undefined],
|
||||
{"n":"FR Bépo","capslock":"shift","t":[[""],[undefined], // NOTE: ISO key that's between LSHIFT and Z (called NUBS on QMK) is not recognised by GDX; NUHS is same as BACKSLASH
|
||||
[undefined],
|
||||
["<HOME>"],
|
||||
[undefined],
|
||||
@@ -51,7 +51,7 @@
|
||||
["é","É","\u0301","\u0301"],// W
|
||||
["y","Y","{","‘"],// X
|
||||
["\u0302","!","¡","¡"],// Y
|
||||
["w","W","\\","‚"],// Z
|
||||
["à","À","\\","‚"],// Z
|
||||
["g","G","µ","†"],// <
|
||||
["h","H","\u0323","‡"],// >
|
||||
["<ALT_L>"],
|
||||
@@ -70,7 +70,7 @@
|
||||
["%","`","‰","″"],// =
|
||||
["z","Z","\u0336","\u0336"],// [
|
||||
["w","W"],// ]
|
||||
["ê","Ê","/","^"],// \
|
||||
["ç","Ç","/","^"],// \ but compromises has been made; use "<circumflex_accent (key between È and V)> + E" to make Ê
|
||||
["n","N","\u0303","\u0303"],// ;
|
||||
["m",'M',"\u0304","\u0304"],// '
|
||||
["f","F","\u0328","\u0328"],// ?
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user