Blobby/.vscode/launch.json
Jakob Feldmann 9cef352fe2 Fixed spring impact registration, camera tilemap limit
The incoming velocity of bodies going onto the spring is,
now saved in a signal connection.

The players camera is now limited to the extends of the tilemap.

I also experimented on the viewport a bit.
It seems like I can't simply swap out the default viewport
with my own configured viewport and use it in the editor normally.
2022-06-19 18:12:29 +02:00

18 lines
517 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "GDScript Godot",
"type": "godot",
"request": "launch",
"project": "C:\\Users\\Jakob\\Documents\\Godot\\Wumper",
"port": 6007,
"address": "127.0.0.1",
"launch_game_instance": true,
"launch_scene": false
}
]
}