-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProject.xml
72 lines (50 loc) · 2.76 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
<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://lime.openfl.org/project/1.0.4" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://lime.openfl.org/project/1.0.4 http://lime.openfl.org/xsd/project-1.0.4.xsd">
<!-- _________________________ Application Settings _________________________ -->
<app title="Friday Night Funkin'" file="funkin" main="Main" version="0.0.5" company="HaxeFlixel" />
<app preloader="flixel.system.FlxPreloader" />
<set name="SWF_VERSION" value="11.8" />
<!-- ____________________________ Window Settings ___________________________ -->
<window if="html5" resizable="true" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" />
<window if="mobile" orientation="landscape" fullscreen="true" width="0" height="0" />
<window width="1280" height="720" fps="60" background="#000000" hardware="true" vsync="false" />
<icon path="art/appicon/16.png" size='16'/>
<icon path="art/appicon/32.png" size='32'/>
<icon path="art/appicon/64.png" size='64'/>
<icon path="art/appicon/256.png"/>
<!-- ______________________________ Game Flags ______________________________ -->
<define name="ALLOW_SCRIPTS" />
<define name="MODS_ALLOWED" />
<define name="SOFT_ASSETS" if="MODS_ALLOWED" />
<!-- if you want to disable console colors... -->
<!-- define name="I_AM_BORING_ZZZ" -->
<!-- _____________________________ Path Settings ____________________________ -->
<set name="BUILD_DIR" value="export" />
<assets path="alsoft.ini"/>
<source path="source" />
<assets path="assets" />
<!-- _______________________________ Libraries ______________________________ -->
<haxelib name="flixel" />
<haxelib name="flixel-addons" />
<haxelib name="flixel-ui" />
<haxelib name="moonchart" />
<haxelib name="tjson" />
<haxelib name="flxanimate" />
<haxelib name="hxdiscord_rpc" if="cpp" />
<haxelib name="hscript-iris" if="ALLOW_SCRIPTS" />
<haxedef name="hscriptPos" if="ALLOW_SCRIPTS" />
<!-- ________________________________ Macros ________________________________ -->
<haxeflag name="-dce no" />
<haxeflag name="--macro" value="addMetadata('@:build(funkin.macros.FlixelMacros.buildZIndex())', 'flixel.FlxBasic')" />
<haxeflag name="--macro" value="include('flixel', true, ['flixel.addons.nape', 'flixel.addons.editors.spine', 'flixel.system.macros'])" if="USE_HSCRIPT" />
<!-- ______________________________ Haxedefines _____________________________ -->
<haxedef name="FLX_NO_HEALTH" />
<!--<haxedef name="FLX_RECORD" />-->
<haxedef name="FLX_NO_MOUSE" if="mobile" />
<haxedef name="FLX_NO_KEYBOARD" if="mobile" />
<haxedef name="FLX_NO_TOUCH" if="desktop" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="message.reporting" value="pretty" />
</project>