2022-01-18 23:28:41 +00:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2022-02-23 21:49:54 +00:00
|
|
|
{
|
2022-03-06 08:33:12 +00:00
|
|
|
// Launch in native/CPP
|
2022-01-18 23:28:41 +00:00
|
|
|
"name": "Lime",
|
|
|
|
"type": "lime",
|
|
|
|
"request": "launch"
|
2022-02-23 21:49:54 +00:00
|
|
|
},
|
|
|
|
{
|
2022-03-06 08:33:12 +00:00
|
|
|
// Evaluate macros with debugging enabled
|
2022-02-23 21:49:54 +00:00
|
|
|
"name": "Haxe Eval",
|
|
|
|
"type": "haxe-eval",
|
|
|
|
"request": "launch"
|
2022-04-18 23:36:09 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "HTML5 Debug",
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "launch",
|
|
|
|
"url": "http://127.0.0.1:3001",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"webRoot": "${workspaceFolder}",
|
|
|
|
"preLaunchTask": "debug: html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Mac (Debug)",
|
|
|
|
"type": "hxcpp",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceRoot}/export/debug/macos/bin/Funkin.app/Contents/MacOS/Funkin",
|
|
|
|
"preLaunchTask": "debug: mac"
|
2022-01-18 23:28:41 +00:00
|
|
|
]
|
2022-02-23 21:49:54 +00:00
|
|
|
}
|