mirror of
https://github.com/danbulant/arcade-machine
synced 2026-06-17 05:21:23 +00:00
14 lines
532 B
JavaScript
14 lines
532 B
JavaScript
//Paths
|
|
var AsphyxiaPath = "C:\\Users\\kryvas\\Downloads\\asphyxia-core-win-x64\\asphyxia.exe"
|
|
var SDVX3Path = "C:\\sdvx\\spice2.lnk"
|
|
var SDVX4Path = ""
|
|
var SDVX5Path = ""
|
|
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"
|