lenix 1.8.17 → 1.8.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/control.ts +4 -2
- package/package.json +1 -1
package/client/control.ts
CHANGED
|
@@ -31,12 +31,14 @@ export const TYPES = {
|
|
|
31
31
|
} as const
|
|
32
32
|
// TODO: add [PAUSE, END, SNAPSHOT, 0, i, j, o, LWIN, RWIN, NUMPAD[1-3], MULTIPLY, DECIMAL, DIVIDE, NUMPADEQUALS, NUMPADENTER, F[4, 13-24], NUMLOCK, SCROLL, RMENU, SEMICOLON, PLUS, SLASH, BACKSLASH, APOSTROPHE, mouse axis, extra mouse bns, scrollwheels]
|
|
33
33
|
// NONE: [3, 5, 7, 28, 53, 65, 93, 94, 156, 193, 226, 227, 228, 230, 231, 239, 240, 247, 248, 258, 259, 260, 265, 292, 293, 294, 295]
|
|
34
|
+
|
|
35
|
+
// REMOVED: { 177: [MOUSE_RIGHT, ESCAPE] } these are the shared keys
|
|
34
36
|
export const CONTROLS = {
|
|
35
37
|
MOUSE_LEFT: [18, 24, 69, 92, 106, 122, 135, 142, 144, 176, 223, 229, 237, 257, 329, 346],
|
|
36
38
|
D: [9, 20, 35, 59, 64, 90, 134, 146, 148, 195, 218, 235, 266, 267, 278, 279, 339, 342],
|
|
37
39
|
S: [8, 31, 33, 72, 78, 88, 130, 139, 149, 151, 196, 219, 233, 268, 269, 302],
|
|
38
40
|
SPACE: [18, 22, 55, 76, 102, 143, 179, 203, 216, 255, 298, 321, 328, 353],
|
|
39
|
-
MOUSE_RIGHT: [25, 68, 70, 91, 114,
|
|
41
|
+
MOUSE_RIGHT: [25, 68, 70, 91, 114, 222, 225, 238, 330, 331, 347],
|
|
40
42
|
E: [38, 46, 51, 54, 86, 103, 119, 153, 184, 206, 350, 351, 355, 356],
|
|
41
43
|
LCONTROL: [36, 60, 62, 132, 210, 224, 280, 281, 326, 341, 343],
|
|
42
44
|
LBRACKET: [39, 41, 43, 100, 116, 274, 275, 276, 277, 312],
|
|
@@ -53,7 +55,7 @@ export const CONTROLS = {
|
|
|
53
55
|
NUMPAD6: [107, 109, 123, 125],
|
|
54
56
|
NUMPAD5: [110, 112, 126, 128],
|
|
55
57
|
RBRACKET: [40, 42, 197, 313],
|
|
56
|
-
ESCAPE: [
|
|
58
|
+
ESCAPE: [200, 202, 322],
|
|
57
59
|
C: [26, 79, 253, 319, 324],
|
|
58
60
|
LEFT: [174, 189, 190, 308],
|
|
59
61
|
CAPITAL: [137, 171, 217],
|