diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-09-25 07:26:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 07:26:57 +0200 |
commit | 24e9f25fe2be11f03a1588e434e0e6fe3f484144 (patch) | |
tree | 48e2b2d22cea391ca4b653a8fd2a351657f1b630 /.vscode | |
parent | a579fa30b9faced48499028f32e3ae53d7eeb142 (diff) | |
parent | 60b62e370ee566010f88e65df3981125dc17be2d (diff) |
Merge pull request #156 from Spartan322/fixup/docs
Diffstat (limited to '.vscode')
-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", } } ] |