-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProject.xml
89 lines (62 loc) · 3.23 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- _________________________ Application Settings _________________________ -->
<app title="Just Another FNF Engine" file="JAFE" main="Main" version="1.0.0rc1" company="SanicBTW"
packageName="com.sanicbtw.jafe" package="com.sanicbtw.jafe" />
<app preloader="flixel.system.FlxPreloader" />
<set name="SWF_VERSION" value="11.8" />
<!-- ____________________________ Window Settings ___________________________ -->
<window width="1280" height="720" fps="" background="#000000" hardware="true" vsync="false" allow-shaders="true" allow-high-dpi="true" require-shaders="true"/>
<window if="html5" resizable="true" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" />
<window if="mobile" orientation="landscape" fullscreen="true" width="1280" height="720" resizable="false" />
<!-- _____________________________ Path Settings ____________________________ -->
<set name="BUILD_DIR" value="export/release" unless="debug" />
<set name="BUILD_DIR" value="export/debug" if="debug" />
<source path="source" />
<library name="funkin" preload="true" />
<assets path="assets/funkin" library="funkin" />
<library name="fof" preload="false" />
<assets path="assets/fof" library="fof" />
<library name="quaver" preload="false" />
<assets path="assets/quaver" library="quaver" />
<!-- _________________________________ Defines ______________________________ -->
<!-- Allow the engine to access the FileSystem -->
<define name="FS_ACCESS" if="windows || linux || android" />
<!-- Enable Discord Rich Presence -->
<!-- <define name="DISCORD_PRESENCE" if="windows || linux" /> -->
<!-- Enable the engine Crash Handler -->
<define name="CRASH_HANDLER" if="windows || linux || android" />
<!-- Enables caching flx text graphics and bitmaps -->
<!-- <define name="CACHE_FLXTEXT" /> -->
<!-- _______________________________ Libraries ______________________________ -->
<haxelib name="flixel" version="4.11.0" />
<haxelib name="flixel-ui" version="2.5.0" />
<haxelib name="hscript" />
<haxelib name="extension-androidtools" if="android" />
<haxelib name="discord_rpc" if="DISCORD_PRESENCE" />
<assets path="utils" if="FS_ACCESS" unless="linux || android" />
<!-- ______________________________ Haxedefines _____________________________ -->
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_GAMEPAD" />
<haxedef name="FLX_NO_SOUND_TRAY" />
<section if="windows">
<haxedef name="HXCPP_GC_BIG_BLOCKS" />
<haxedef name="HXCPP_GC_GENERATIONAL" />
<haxedef name="HXCPP_CHECK_POINTER" />
<haxedef name="HXCPP_STACK_LINE" />
</section>
<haxedef name="hscriptPos" />
<haxedef name="no-deprecation-warnings" />
<!-- Enables Crash Handler on Debug -->
<undefine name="openfl-disable-handle-error" if="CRASH_HANDLER" />
<!-- _________________________________ Icons ________________________________ -->
<icon path="icons/icon16.png" size='16' />
<icon path="icons/icon32.png" size='32' />
<icon path="icons/icon64.png" size='64' />
<icon path="icons/icon128.png" size='128' />
<icon path="icons/icon256.png" size='256' />
<icon path="icons/icon512.png" size='512' />
<icon path="icons/iconOG.png" />
</project>