mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-07-01 08:06:44 +00:00
Added support for breakpoint debugging.
This commit is contained in:
parent
56d59774e3
commit
81f7a04916
8
.vscode/extensions.json
vendored
Normal file
8
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"nadako.vshaxe",
|
||||||
|
"wiggin77.codedox",
|
||||||
|
"vshaxe.hxcpp-debugger",
|
||||||
|
"openfl.lime-vscode-extension"
|
||||||
|
]
|
||||||
|
}
|
10
.vscode/launch.json
vendored
Normal file
10
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Lime",
|
||||||
|
"type": "lime",
|
||||||
|
"request": "launch"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -185,6 +185,11 @@
|
||||||
<!--Enable this for Nape release builds for a serious peformance improvement-->
|
<!--Enable this for Nape release builds for a serious peformance improvement-->
|
||||||
<haxedef name="NAPE_RELEASE_BUILD" unless="debug" />
|
<haxedef name="NAPE_RELEASE_BUILD" unless="debug" />
|
||||||
|
|
||||||
|
<haxeflag name="--no-traces" unless="debug" />
|
||||||
|
<haxeflag name="--dce full" if="release" />
|
||||||
|
<haxedef name="HXCPP_CHECK_POINTER" />
|
||||||
|
<haxedef name="HXCPP_STACK_LINE" />
|
||||||
|
|
||||||
<!-- _________________________________ Custom _______________________________ -->
|
<!-- _________________________________ Custom _______________________________ -->
|
||||||
|
|
||||||
<!--Place custom nodes like icons here (higher priority to override the HaxeFlixel icon)-->
|
<!--Place custom nodes like icons here (higher priority to override the HaxeFlixel icon)-->
|
||||||
|
|
Loading…
Reference in a new issue