{ // 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 Editor", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/src/godot/bin/godot.x11.opt.tools.64", "args": ["main/editor.tscn"], "cwd": "${workspaceRoot}/godot", "setupCommands": [{"text": "source ${workspaceRoot}/debug.py"}] }, { "name": "Run Game", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/src/godot/bin/godot.x11.opt.tools.64", "args": ["main/main.tscn"], "cwd": "${workspaceRoot}/godot", "setupCommands": [{"text": "source ${workspaceRoot}/debug.py"}] } ] }