-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProject.xml
More file actions
116 lines (83 loc) · 4.62 KB
/
Copy pathProject.xml
File metadata and controls
116 lines (83 loc) · 4.62 KB
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
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://lime.software/project/1.0.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://lime.software/project/1.0.2 http://lime.software/xsd/project-1.0.2.xsd">
<!-- ____________________ Application Settings ____________________ -->
<app title="Funkin' MINECRAFT" file="FunkinMINECRAFT" packageName="com.GO_Miles.FunkinMINECRAFT" package="com.GO_Miles.FunkinMINECRAFT" main="Main" version="0.1.0" company="GO_Miles"/>
<!--Switch Export with Unique ApplicationID and Icon-->
<set name="APP_ID" value="0x0100f6c013bbc000"/>
<define name="BUILD_DATE" value="August 19 2025"/>
<!--The flixel preloader is not accurate in Chrome. You can use it regularly if you embed the swf into a html file
or you can set the actual size of your file manually at "FlxPreloaderBase-onUpdate-bytesTotal"-->
<!-- <app preloader="Preloader"/> -->
<app preloader="flixel.system.FlxPreloader"/>
<!--Minimum without FLX_NO_GAMEPAD: 11.8, without FLX_NO_NATIVE_CURSOR: 11.2-->
<set name="SWF_VERSION" value="11.8"/>
<!-- ____________________ Window Settings ____________________ -->
<!--These window settings apply to all targets-->
<window width="1280" height="720" background="0x0F0F0F" hardware="true" vsync="false"/>
<!--HTML5-specific-->
<window if="html5" resizable="true" background="0x000000"/>
<!--Desktop-specific-->
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" vsync="false"/>
<!--Mobile-specific-->
<window if="mobile" orientation="landscape" fullscreen="true" width="0" height="0" resizable="false"/>
<!-- ____________________ Export Settings ____________________ -->
<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="32bits"/>
<classpath name="source"/>
<!--<section unless="sys">-->
<!--will change these later for a URL/File hybrid-->
<assets path="assets/characters" library="default"/>
<assets path="assets/data" library="default"/>
<assets path="assets/weeks" library="default"/>
<assets path="assets/levels" library="default"/>
<assets path="assets/stories" library="default"/>
<library name="songs" preload="true"/>
<library name="shared" preload="false"/>
<library name="aero_archways" preload="true"/>
<library name="camp_combat" preload="false"/>
<library name="downfall_zone" preload="false"/>
<library name="overland_mesa" preload="false"/>
<assets path="assets/songs" library="songs"/>
<assets path="assets/shared" library="shared"/>
<assets path="assets/levels/aero_archways" library="aero_archways"/>
<assets path="assets/levels/camp_combat" library="camp_combat"/>
<assets path="assets/levels/downfall_zone" library="downfall_zone"/>
<assets path="assets/levels/overland_mesa" library="overland_mesa"/>
<!--</section>-->
<assets path="assets/fonts" embed="true"/>
<assets path="art/PLEASE_README.md" rename='README.txt'/>
<!-- ____________________ Customization ____________________ -->
<haxedef name="HXC_DEBUG_TRACE" if="debug"/>
<haxedef name="CRASH_HANDLER" if="desktop"/>
<haxedef name="HXCPP_CHECK_POINTER" if="CRASH_HANDLER"/>
<haxedef name="HXCPP_STACK_LINE" if="CRASH_HANDLER"/>
<haxedev set='webgl'/>
<!--Disable the Flixel core focus lost screen-->
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN"/>
<haxedef name="FLX_NO_HEALTH"/>
<!--Allow working memory greater than 1 Gig-->
<haxedef name="HXCPP_GC_BIG_BLOCKS"/>
<haxedef name="openfl_disable_text_measurement_cache"/>
<!--Disable the Flixel core debugger. Automatically gets set whenever you compile in release mode!-->
<haxedef name="FLX_NO_DEBUG" unless="debug"/>
<haxedef name="FLX_NO_MOUSE" if="mobile"/>
<haxedef name="FLX_NO_KEYBOARD" if="mobile"/>
<haxedef name="FLX_NO_GAMEPAD" if="mobile"/>
<haxedef name="FLX_NO_TOUCH" if="desktop"/>
<!-- ____________________ Libraries ____________________ -->
<haxelib name="flixel"/>
<haxelib name="hxcpp"/>
<haxelib name="parallaxlt"/>
<haxelib name="hxcpp-debug-server" if="debug"/>
<haxelib name="discord_rpc" if="desktop"/>
<!-- _____________________ Icons ____________________ -->
<icon path="art/icons/icon16.png" size='16'/>
<icon path="art/icons/icon32.png" size='32'/>
<icon path="art/icons/icon64.png" size='64'/>
<icon path="art/icons/iconOG.png"/>
<!-- ____________________ Errors ____________________ -->
<error value="Seems like you're using Haxe ${haxe}. See https://haxe.org/download for 4.3.7" if="${haxe != 4.3.7}"/>
<error value="flixel ${flixel} isn't supported. Run the setup script for the proper lib versions!" if="${flixel != 6.1.0}"/>
</project>