-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.xml
107 lines (76 loc) · 3.87 KB
/
Project.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- _________________________ Application Settings _________________________ -->
<app title="Friday Night Funkin' | Vs. Foxa 3.0" file="VsFoxa" packageName="foxatheartist.vsfoxa" package="foxatheartist.vsfoxa" main="Main" version="3.0.0" company="FoxaTheArtist"/>
<app preloader="flixel.system.FlxPreloader"/>
<set name="APP_ID" value="0x0100f6c013bbc000"/>
<set name="SWF_VERSION" value="11.8"/>
<!-- ____________________________ Window Settings ___________________________ -->
<!--These window settings apply to all targets-->
<window width="1280" height="720" fps="120" hardware="true" vsync="true" background="0x0000ffff"/>
<!--HTML5-->
<window if="html5" resizable="true"/>
<!--Desktop-->
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" vsync="false"/>
<!--macOS-->
<window if="mac" orientation="auto" fullscreen="false" resizable="true" vsync="false" allow-high-dpi="true" />
<!--Mobile-->
<window if="mobile" orientation="landscape" fullscreen="true" width="0" height="0" resizable="false"/>
<!-- _____________________________ Path Settings ____________________________ -->
<classpath name="source" />
<set name="BUILD_DIR" value="export/debug" if="debug" />
<set name="BUILD_DIR" value="export/release" unless="debug" />
<set name="BUILD_DIR" value="export/32bit" if="32bit" />
<assets path="assets/preload" rename="assets" exclude="*.ogg" if="web"/>
<assets path="assets/preload" rename="assets" exclude="*.mp3" unless="web"/>
<assets path="assets/preload/videos" rename="assets/videos" include="*mp4" embed='false' />
<assets path="assets/preload/videos" exclude="*.mp3" if="web"/>
<assets path="assets/preload/videos" exclude="*.ogg" unless="web"/>
<assets path="plugins/" rename='' if="windows"/>
<assets path="dlls/" rename='' if="windows"/>
<assets path="assets/songs" library="songs" exclude="*.ogg" if="web"/>
<assets path="assets/songs" library="songs" exclude="*.mp3" unless="web"/>
<assets path="assets/shared" library="shared" exclude="*.ogg" if="web"/>
<assets path="assets/shared" library="shared" exclude="*.mp3" unless="web"/>
<assets path='art/readme.txt' rename='PLEASE READ.txt' />
<assets path="CHANGELOG.md" rename='changelog.txt'/>
<assets path="assets/fonts" embed='true'/>
<define name="SHADERS_ENABLED" unless="mac"/>
<define name="CRASH_HANDLER" />
<!--<define name="FEATURE_MP4" if="desktop" />-->
<define name="PRELOAD_ALL" unless="web" />
<define name="NO_PRELOAD_ALL" unless="PRELOAD_ALL"/>
<section if="PRELOAD_ALL">
<library name="songs" preload="true" />
<library name="shared" preload="true" />
</section>
<section if="NO_PRELOAD_ALL">
<library name="songs" preload="false" />
<library name="shared" preload="false" />
</section>
<!-- _______________________________ Libraries ______________________________ -->
<haxelib name="flixel" />
<haxedev set='webgl' if="web"/>
<haxelib name="flixel-addons" />
<haxelib name="hscript" />
<haxelib name="sscript" />
<haxelib name="flixel-ui" />
<haxelib name="hxCodec" if="desktop || android" />
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="HXCPP_GC_BIG_BLOCKS"/>
<haxedef name="HXCPP_GC_MOVING"/>
<haxedef name="HXCPP_GC_DYNAMIC_SIZE"/>
<haxedef name="NAPE_RELEASE_BUILD" unless="debug" />
<!--Used for Izzy Engine's crash handler-->
<haxedef name="HXCPP_CHECK_POINTER" if="CRASH_HANDLER" />
<haxedef name="HXCPP_STACK_LINE" if="CRASH_HANDLER" />
<setenv name="next"/>
<ndll name="systools" haxelib="systools" />
<haxelib name="discord_rpc" if="desktop"/>
<!-- _________________________________ Custom _______________________________ -->
<icon path="art/dave16.png" size='16'/>
<icon path="art/dave32.png" size='32'/>
<icon path="art/dave64.png" size='64'/>
<icon path="art/dave.png" />
</project>