-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.xml
More file actions
111 lines (84 loc) · 4.48 KB
/
Project.xml
File metadata and controls
111 lines (84 loc) · 4.48 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- _________________________ Application Settings _________________________ -->
<app title="FNF: 20tão" file="20tao" packageName="com.PlayTvGames.FazOPix" package="com.PlayTvGames.FazOPix" main="Main" version="3.4.playtv" company="PlayTvGames" />
<!--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="backend.game.DoidoPreloader" />
<!--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" fps="144" background="#000000" hardware="true" vsync="false" />
<!--HTML5-specific-->
<window if="html5" resizable="false" />
<!--Desktop-specific-->
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" />
<!--Mobile-specific-->
<window if="mobile" orientation="landscape" fullscreen="true" resizable="false" allow-shaders="true" allow-high-dpi="true"/>
<!-- _____________________________ Custom Defines ___________________________ -->
<!--<define name="DISCORD_RPC" if="cpp" unless="mobile" />-->
<define name="PRELOAD_SONG" if="cpp" unless="debug" />
<define name="RENAME_UNDERSCORE" if="html5 || mobile"/>
<define name="ENABLE_PRINTING" if="cpp || hl || html5"/>
<define name="ROUND_ICON" if="mac"/>
<define name="TOUCH_CONTROLS" if="mobile"/>
<!--Uncomment-this-to-use-videos-in-your-mod!!-->
<!--<define name="VIDEOS_ALLOWED" if="windows" />-->
<define name="HXVLC_NO_SHARE_DIRECTORY" if="VIDEOS_ALLOWED" />
<!-- _____________________________ Path Settings ____________________________ -->
<set name="BUILD_DIR" value="export" />
<set name="BUILD_DIR" value="export/debug" if="debug" />
<set name="BUILD_DIR" value="export/release" unless="debug" />
<source path="source" />
<assets path="assets" if="VIDEOS_ALLOWED" />
<assets path="assets" exclude="videos" unless="VIDEOS_ALLOWED" />
<assets path="art/mobile" rename="assets/images/mobile" if="TOUCH_CONTROLS" />
<!-- RENAME UNDERSCORE FOLDERS -->
<section if="RENAME_UNDERSCORE">
<assets path="assets/images/stages/_scripts" rename="assets/images/stages/scripts"/>
<assets path="assets/images/characters/_offsets" rename="assets/images/characters/offsets"/>
<assets path="assets/images/notes/_other" rename="assets/images/notes/other"/>
</section>
<!-- OpenAL config -->
<section if="desktop">
<assets path="alsoft.txt" rename="alsoft.ini" type="text" if= "windows"/>
<assets path="alsoft.txt" rename="alsoft.conf" type="text" unless="windows"/>
</section>
<!-- _______________________________ Libraries ______________________________ -->
<haxelib name="flixel" />
<haxelib name="flixel-addons" />
<haxelib name="flixel-ui" />
<haxelib name="hscript" if="debug" /> <!--Used only for flixel's debugger!-->
<haxelib name="hscript-iris" />
<haxedef name="hscriptPos" />
<haxelib name="hxdiscord_rpc" if="DISCORD_RPC" />
<haxelib name="hxvlc" if="VIDEOS_ALLOWED" />
<!-- ______ Custom Doido Libraries ______ -->
<haxelib name="flxanimate-doido"/>
<haxelib name="tjson"/>
<!-- ______________________________ Haxedefines _____________________________ -->
<haxedef name="FLX_NO_TOUCH" unless="TOUCH_CONTROLS" />
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="HXCPP_CHECK_POINTER" if="release" />
<haxedef name="HXCPP_STACK_LINE" if="release" />
<!-- _________________________________ Custom _______________________________ -->
<section if="ROUND_ICON">
<icon path="art/icon/macOS/icon16.png" size='16' />
<icon path="art/icon/macOS/icon32.png" size='32' />
<icon path="art/icon/macOS/icon64.png" size='64' />
<icon path="art/icon/macOS/icon128.png" size='128' />
<icon path="art/icon/macOS/icon256.png" size='256' />
<icon path="art/icon/macOS/icon512.png"/>
</section>
<section unless="ROUND_ICON">
<icon path="art/icon/icon16.png" size='16' />
<icon path="art/icon/icon32.png" size='32' />
<icon path="art/icon/icon64.png" size='64' />
<icon path="art/icon/icon128.png" size='128' />
<icon path="art/icon/icon256.png" size='256' />
<icon path="art/icon/icon512.png" size='512' />
<icon path="art/icon/iconOG.png" />
</section>
</project>