distributed_physics_test/.vscode/tasks.json
Michael Bradley dad37262a5
All checks were successful
CI / Formatting (push) Successful in 1m14s
Implement very basic and bad and specific netcode
The game can now retrieve its seed from another game on the network
2025-05-25 00:54:16 -04:00

42 lines
895 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Dev build",
"type": "cargo",
"command": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Release build",
"type": "cargo",
"command": "build",
"args": ["--release", "--no-default-features"],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false
},
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": false
}
}
]
}