distributed_physics_test/.vscode/tasks.json
Michael Bradley aa07b193b6
All checks were successful
CI / Formatting (push) Successful in 1m5s
Launch game through VSCodium debugger
2025-05-24 13:23:20 -04:00

23 lines
435 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "cargo",
"command": "build",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}