mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
35 lines
815 B
JSON
35 lines
815 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
// Launch in native/CPP on Windows/OSX/Linux
|
|
"name": "Lime",
|
|
"type": "lime",
|
|
"request": "launch"
|
|
},
|
|
{
|
|
// Launch in browser
|
|
"name": "HTML5 Debug",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://127.0.0.1:3001",
|
|
"sourceMaps": true,
|
|
"webRoot": "${workspaceFolder}",
|
|
"preLaunchTask": "debug: html"
|
|
},
|
|
{
|
|
// Performs a build for debugging macros
|
|
// Debugging is attached on the compilation rather than the game itself
|
|
"name": "Haxe Eval",
|
|
"type": "haxe-eval",
|
|
"request": "launch"
|
|
},
|
|
{
|
|
// Attaches the debugger to an already running game
|
|
"name": "HXCPP - Attach",
|
|
"type": "hxcpp",
|
|
"request": "attach"
|
|
}
|
|
]
|
|
}
|