diff options
author | Spartan322 <Megacake1234@gmail.com> | 2023-09-07 22:06:30 +0200 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2023-09-25 00:12:48 +0200 |
commit | 60b62e370ee566010f88e65df3981125dc17be2d (patch) | |
tree | 48e2b2d22cea391ca4b653a8fd2a351657f1b630 /.vscode/launch.json | |
parent | a579fa30b9faced48499028f32e3ae53d7eeb142 (diff) |
Simplify README.md
Add system-requirements.md
Add using-git-bisect.md
Add run-build-export.md
Add cloning.md
Add debugging.md
Add rebasing.md
Includes PR squashing
Simplify .vscode/launch.json
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", } } ] |