46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
|
{
|
||
|
// Use IntelliSense to learn about possible attributes.
|
||
|
// Hover to view descriptions of existing attributes.
|
||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Play in Editor",
|
||
|
"type": "godot-mono",
|
||
|
"mode": "playInEditor",
|
||
|
"request": "launch"
|
||
|
},
|
||
|
{
|
||
|
"name": "Launch",
|
||
|
"type": "godot-mono",
|
||
|
"request": "launch",
|
||
|
"mode": "executable",
|
||
|
"preLaunchTask": "build",
|
||
|
"executable": "/usr/bin/godot-mono",
|
||
|
"executableArguments": [
|
||
|
"--path",
|
||
|
"${workspaceRoot}"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "Launch (Select Scene)",
|
||
|
"type": "godot-mono",
|
||
|
"request": "launch",
|
||
|
"mode": "executable",
|
||
|
"preLaunchTask": "build",
|
||
|
"executable": "/usr/bin/godot-mono",
|
||
|
"executableArguments": [
|
||
|
"--path",
|
||
|
"${workspaceRoot}",
|
||
|
"${command:SelectLaunchScene}"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "Attach",
|
||
|
"type": "godot-mono",
|
||
|
"request": "attach",
|
||
|
"address": "localhost",
|
||
|
"port": 23685
|
||
|
}
|
||
|
]
|
||
|
}
|