1
Fork 0
mirror of https://github.com/RYGhub/the-cold-night.git synced 2024-10-16 20:07:26 +00:00
the-cold-night/.vscode/launch.json
2022-04-02 01:14:16 +02:00

25 lines
No EOL
662 B
JSON

{
"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
},
]
}