1
Fork 0
mirror of https://github.com/RYGhub/the-cold-night.git synced 2024-11-22 20:54:19 +00:00
the-cold-night/.vscode/launch.json

25 lines
662 B
JSON
Raw Normal View History

2022-04-01 23:14:16 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Current Scene",
"type": "godot",
"request": "launch",
"project": "${workspaceFolder}",
"port": 6007,
"address": "127.0.0.1",
"launch_game_instance": true,
"launch_scene": false
},
{
"name": "Full Project",
"type": "godot",
"request": "launch",
"project": "${workspaceFolder}",
"port": 6007,
"address": "127.0.0.1",
"launch_game_instance": true,
"launch_scene": false
},
]
}