1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-21 15:44:23 +00:00

Create VSCode run configs

This commit is contained in:
Steffo 2024-04-17 04:14:50 +02:00
parent 44f5556e74
commit 6328c2ef0d
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

18
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Project",
"type": "godot",
"request": "launch",
"project": "${workspaceFolder}",
},
{
"name": "Launch Scene",
"type": "godot",
"request": "launch",
"scene": "current",
"project": "${workspaceFolder}",
}
]
}