Launch game through VSCodium debugger
All checks were successful
CI / Formatting (push) Successful in 1m5s

This commit is contained in:
Michael Bradley 2025-05-24 13:23:20 -04:00
parent b7804bd547
commit aa07b193b6
Signed by: MichaelBradley
SSH key fingerprint: SHA256:o/aaeYtRubILK7OYYjYP12DmU7BsPUhKji1AgaQ+ge4
2 changed files with 49 additions and 9 deletions

12
.vscode/tasks.json vendored
View file

@ -2,18 +2,12 @@
"version": "2.0.0",
"tasks": [
{
"label": "Launch",
"label": "Build",
"type": "cargo",
"command": "run",
"args": ["--", "--seed", "gargamel"],
"options": {
"env": {
"RUST_BACKTRACE": "full"
}
},
"command": "build",
"presentation": {
"echo": true,
"reveal": "always",
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,