Files
godot_botw_start/.vscode/launch.json
T
2025-11-13 17:37:14 +08:00

25 lines
868 B
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": "Run Godot Run",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program" :"E:/tools/Godot_v4.5.1-stable_mono_win64/Godot_v4.5.1-stable_mono_win64.exe",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false,
"args": [
"--path",
"${workspaceFolder}",
//"--script",
//"res://addons/godot-csharp-ide/launchers/VSCodeLauncher.cs"
]
}
]
}