2D multiplayer platformer using Godot Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

30 lines
832 B

{
"version": "0.2.0",
"configurations": [{
"name": "Play in Editor",
"type": "godot-mono",
"mode": "playInEditor",
"request": "launch",
"preLaunchTask": "build"
},{
"name": "Launch (Linux)",
"type": "godot-mono",
"request": "launch",
"mode": "executable",
"executable": "${workspaceRoot}/build/linux/${workspaceFolderBasename}.x86_64",
"executableArguments": [ "--path", "${workspaceRoot}" ]
},{
"name": "Launch (Windows)",
"type": "godot-mono",
"request": "launch",
"mode": "executable",
"executable": "${workspaceRoot}/build/windows/${workspaceFolderBasename}.exe",
"executableArguments": [ "--path", "${workspaceRoot}" ]
},{
"name": "Attach",
"type": "godot-mono",
"request": "attach",
"address": "localhost",
"port": 23685
}]
}