mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-12 11:34:05 +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],
|
[undefined],
|
||||||
["<HOME>"],
|
["<HOME>"],
|
||||||
[undefined],
|
[undefined],
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
["é","É","\u0301","\u0301"],// W
|
["é","É","\u0301","\u0301"],// W
|
||||||
["y","Y","{","‘"],// X
|
["y","Y","{","‘"],// X
|
||||||
["\u0302","!","¡","¡"],// Y
|
["\u0302","!","¡","¡"],// Y
|
||||||
["w","W","\\","‚"],// Z
|
["à","À","\\","‚"],// Z
|
||||||
["g","G","µ","†"],// <
|
["g","G","µ","†"],// <
|
||||||
["h","H","\u0323","‡"],// >
|
["h","H","\u0323","‡"],// >
|
||||||
["<ALT_L>"],
|
["<ALT_L>"],
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
["%","`","‰","″"],// =
|
["%","`","‰","″"],// =
|
||||||
["z","Z","\u0336","\u0336"],// [
|
["z","Z","\u0336","\u0336"],// [
|
||||||
["w","W"],// ]
|
["w","W"],// ]
|
||||||
["ê","Ê","/","^"],// \
|
["ç","Ç","/","^"],// \ but compromises has been made; use "<circumflex_accent (key between È and V)> + E" to make Ê
|
||||||
["n","N","\u0303","\u0303"],// ;
|
["n","N","\u0303","\u0303"],// ;
|
||||||
["m",'M',"\u0304","\u0304"],// '
|
["m",'M',"\u0304","\u0304"],// '
|
||||||
["f","F","\u0328","\u0328"],// ?
|
["f","F","\u0328","\u0328"],// ?
|
||||||
|
|||||||
@@ -204,6 +204,15 @@ class UIKeyboardControlPanel(remoCon: UIRemoCon?) : UICanvas() {
|
|||||||
presetSelector.update(delta)
|
presetSelector.update(delta)
|
||||||
|
|
||||||
controlPalette.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) {
|
override fun renderImpl(frameDelta: Float, batch: SpriteBatch, camera: OrthographicCamera) {
|
||||||
|
|||||||
Reference in New Issue
Block a user