Skip to content

Instantly share code, notes, and snippets.

@Ardagan
Created June 22, 2024 23:37
Show Gist options
  • Save Ardagan/ebb0e8108b22576ced1332ce82543fd9 to your computer and use it in GitHub Desktop.
Save Ardagan/ebb0e8108b22576ced1332ce82543fd9 to your computer and use it in GitHub Desktop.
VSCode Godot Config
{
"version": "0.2.0",
"env": {
"godot_path": "Godot_v4.2.2-stable_mono_win64.exe"
},
"configurations": [
{
"name": "Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "Godot_v4.2.2-stable_mono_win64.exe",
"args": [
"--path",
"${workspaceRoot}",
// "--debug",
"--debug-server",
"tcp://127.0.0.1:6007"
],
"stopAtEntry": true,
"console":"integratedTerminal",
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build",
"group": "build",
"problemMatcher": [],
"label": "build",
}
],
"group": {
"kind": "build",
"isDefault": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment