diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 2cabcf6..8fd62de 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,18 +8,14 @@ "type": "cppdbg", "request": "launch", "name": "Debug", - "program": "/bin/godot4", // TODO: Godot environment variable? - "args": [], + "program": "/bin/godot4", // TODO: Set your Godot binary path + "args": [ + "-e" + ], "cwd": "${workspaceFolder}/game", "preLaunchTask": "dev_build", "windows": { - "type": "cppvsdb", - "request": "launch", - "name": "Debug", - "program": "/bin/godot4", // TODO: Common Godot 4 Windows install or Godot environment variable? - "args": [], "cwd": "${workspaceFolder}\\game", - "preLaunchTask": "dev_build", } } ] |