-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.xml
More file actions
53 lines (36 loc) · 1.91 KB
/
Copy pathproject.xml
File metadata and controls
53 lines (36 loc) · 1.91 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- NMML reference: https://gist.github.com/1763850 -->
<!-- metadata, make sure 'package' is at least 3 segments (ie. com.mycompany.myproject) -->
<meta title="bd" package="com.wrongtomatofactory.bd" version="1.0.0" company="Wrong Tomato Factory" />
<!-- output -->
<app main="Main" file="bd" path="bin" />
<window width="0" height="0" fps="60" orientation="landscape" background="#000000" hardware="true" vsync="true" if="mobile" />
<window width="640" height="400" fps="60" orientation="portrait" resizable="true" if="web" />
<window width="960" height="600" fps="60" orientation="landscape" fullscreen="false" hardware="false" vsync="false" if="flash" />
<window width="960" height="600" fps="60" orientation="landscape" fullscreen="true" hardware="true" vsync="true" if="desktop" />
<!--The flixel preloader gets stuck in Chrome, so it's disabled by default for now.
Safe to use if you embed the swf into a html file!-->
<app preloader="flixel.system.FlxPreloader" />
<!--The swf version should be at least 11.2 if you want to use the FLX_MOUSE_ADVANCED option-->
<set name="SWF_VERSION" value="11.8" />
<set name="BUILD_DIR" value="bin" />
<!-- classpath, haxe libs -->
<source path="src" />
<haxelib name="openfl" />
<haxelib name="flixel"/>
<!--In case you want to use the addons package-->
<haxelib name="flixel-addons" />
<!-- assets -->
<icon path="assets/openfl.svg" />
<assets path="assets" />
<!-- optimize output
<haxeflag name="-dce full" /> -->
<!--Disable the Flixel core sound tray-->
<haxedef name="FLX_NO_SOUND_TRAY" />
<!--Disable the Flixel core focus lost screen-->
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<!--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" unless="debug" />
</project>