cirnogodot/.vscode/launch.json

58 lines
1.9 KiB
JSON
Raw Normal View History

2024-02-26 17:35:40 +01:00
{
2024-02-28 17:26:39 +01:00
"version": "2.0.0",
2024-02-26 17:35:40 +01:00
"configurations": [
2024-11-11 16:53:28 +01:00
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "I:/Apps/Godot_v4.3-stable_mono_win64/Godot_v4.3-stable_mono_win64.exe",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
2024-02-26 17:35:40 +01:00
{
2024-02-28 17:26:39 +01:00
"name": "Play in Editor",
"type": "godot-mono",
"mode": "playInEditor",
"request": "launch"
},
{
"name": "Launch",
"type": "godot-mono",
"request": "launch",
"mode": "executable",
"preLaunchTask": "build",
"executable": "I:/Apps/Godot_v4.3-stable_mono_win64/Godot_v4.3-stable_mono_win64.exe",
2024-02-28 17:26:39 +01:00
// See which arguments are available here:
// https://docs.godotengine.org/en/stable/getting_started/editor/command_line_tutorial.html
"executableArguments": [
"--path",
"${workspaceRoot}"
]
},
{
"name": "Launch (Select Scene)",
"type": "godot-mono",
2024-02-26 17:35:40 +01:00
"request": "launch",
2024-02-28 17:26:39 +01:00
"mode": "executable",
"preLaunchTask": "build",
"executable": "I:/Apps/Godot_v4.3-stable_mono_win64/Godot_v4.3-stable_mono_win64.exe",
2024-02-28 17:26:39 +01:00
// See which arguments are available here:
// https://docs.godotengine.org/en/stable/getting_started/editor/command_line_tutorial.html
"executableArguments": [
"--path",
"${workspaceRoot}",
"${command:SelectLaunchScene}"
]
},
{
"name": "Attach",
"type": "godot-mono",
"request": "attach",
"address": "localhost",
"port": 23685
}
2024-02-26 17:35:40 +01:00
]
}