Skip to content

Commit

Permalink
Remove need to specify steam.exe path
Browse files Browse the repository at this point in the history
nicoco007 committed Dec 7, 2023
1 parent 8b948fe commit 6da0371
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions Source/CustomAvatar/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -2,18 +2,30 @@
"profiles": {
"Beat Saber": {
"commandName": "Executable",
"executablePath": "$(SteamExecutable)",
"commandLineArgs": "-applaunch 620980 --verbose --debug --trace"
"executablePath": "$(BeatSaberDir)\\Beat Saber.exe",
"commandLineArgs": "--verbose --debug",
"workingDirectory": "$(BeatSaberDir)",
"environmentVariables": {
"SteamAppId": "620980"
}
},
"Beat Saber (FPFC)": {
"commandName": "Executable",
"executablePath": "$(SteamExecutable)",
"commandLineArgs": "-applaunch 620980 fpfc --verbose --debug --trace"
"executablePath": "$(BeatSaberDir)\\Beat Saber.exe",
"commandLineArgs": "fpfc --verbose --debug",
"workingDirectory": "$(BeatSaberDir)",
"environmentVariables": {
"SteamAppId": "620980"
}
},
"Beat Saber (Force XR)": {
"commandName": "Executable",
"executablePath": "$(SteamExecutable)",
"commandLineArgs": "-applaunch 620980 --force-xr --verbose --debug --trace"
"executablePath": "$(BeatSaberDir)\\Beat Saber.exe",
"commandLineArgs": "--force-xr --verbose --debug",
"workingDirectory": "$(BeatSaberDir)",
"environmentVariables": {
"SteamAppId": "620980"
}
}
}
}

0 comments on commit 6da0371

Please sign in to comment.