This commit is contained in:
2025-03-27 22:55:52 +01:00
parent f453079c72
commit cc30c2bdcb
6 changed files with 70 additions and 133 deletions

22
.vscode/launch.json vendored
View File

@@ -5,16 +5,32 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"name": "Launch Package (Barotrauma)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"cwd": "C:/Users/Administrator/Seafile/Games-Barotrauma",
"args": [
"LightComponent!anyrange=\"(!num)\"",
"loglevel",
"trace",
"(?-s)LightComponent!anyrange=\"(!num)\"",
"*4",
"**/*.xml"
"**/Outpost*.xml"
]
},
{
"name": "Launch Package (Workspace)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"loglevel",
"trace",
"(?-s)LightComponent!anyrange=\"(!num)\"",
"*4",
"**/Outpost*.xml"
]
}
]