run on vs code

This commit is contained in:
xsl
2025-11-13 16:39:25 +08:00
parent 24b1be4014
commit ff00d14f5b
794 changed files with 8247 additions and 5 deletions
+25
View File
@@ -0,0 +1,25 @@
{
// 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_console.exe",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false,
"args": [
"--path",
"${workspaceFolder}",
//"--script",
//"res://addons/godot-csharp-ide/launchers/VSCodeLauncher.cs"
]
}
]
}