mirror of
https://github.com/danbulant/arcade-machine
synced 2026-06-17 21:41:13 +00:00
Added configurable menu keys part 2
This commit is contained in:
parent
70e36808b1
commit
9412091524
1 changed files with 11 additions and 2 deletions
13
ui/Vars.js
13
ui/Vars.js
|
|
@ -1,5 +1,14 @@
|
|||
//Paths
|
||||
var AsphyxiaPath = "C:\\Users\\kryvas\\Downloads\\asphyxia-core-win-x64\\asphyxia.exe"
|
||||
var SDVX3Path = "C:\\UI\\arcade-machine\\ui\\spice.exe"
|
||||
var SDVX3Path = "C:\\sdvx\\spice2.lnk"
|
||||
var SDVX4Path = ""
|
||||
var SDVX5Path = ""
|
||||
var browser = "brave.exe"
|
||||
var browser = "brave.exe"
|
||||
//Keys
|
||||
var KeyUp = "KeyW"
|
||||
var KeyDown = "KeyS"
|
||||
var KeyLeft = "KeyA"
|
||||
var KeyRight = "KeyD"
|
||||
var KeyStart = "KeyE"
|
||||
var ExitKey1 = "g" // Only add lowercase name of the key without "Key" part example: "KeyA" becomes "a"
|
||||
var ExitKey2 = "h" // Only add lowercase name of the key without "Key" part example: "KeyA" becomes "a"
|
||||
|
|
|
|||
Loading…
Reference in a new issue