Add --path option to sample VS Code launch.json (#3617)

This commit is contained in:
Dean Brettle
2020-05-30 13:18:53 -07:00
committed by GitHub
parent 3deda2bd24
commit 8fb5c787aa

View File

@@ -77,7 +77,7 @@ To run and debug the project you need to create a new configuration in the ``lau
"request": "launch",
"program": "${workspaceFolder}/bin/godot.linuxbsd.tools.64",
// Change to your current platform
"args": [ "-e" ],
"args": [ "-e", "--path", "path-to-your-godot-project-folder" ], // Change to the project you want to test with
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],