From 22c15b6c2ae604acfe84693639a3513e5f1e31ca Mon Sep 17 00:00:00 2001 From: copygirl Date: Mon, 19 Apr 2021 21:02:05 +0200 Subject: [PATCH] Add launch.json --- .vscode/launch.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c616285 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + "version": "0.2.0", + "configurations": [{ + "name": "Play in Editor", + "type": "godot-mono", + "mode": "playInEditor", + "request": "launch" + },{ + "name": "Launch (Linux)", + "type": "godot-mono", + "request": "launch", + "mode": "executable", + "executable": "${workspaceRoot}/build/linux/${workspaceFolderBasename}.x86_64", + "executableArguments": [ "--path", "${workspaceRoot}" ] + },{ + "name": "Launch (Windows)", + "type": "godot-mono", + "request": "launch", + "mode": "executable", + "executable": "${workspaceRoot}/build/windows/${workspaceFolderBasename}.exe", + "executableArguments": [ "--path", "${workspaceRoot}" ] + },{ + "name": "Attach", + "type": "godot-mono", + "request": "attach", + "address": "localhost", + "port": 23685 + }] +}