Advertisement
YellowAfterlife

HaxePunk/application.xml

Oct 24th, 2013
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project>
  3.     <meta title="TestHXP" package="cc.yal.TestHXP" version="1.0.0" company="" />
  4.  
  5.     <app file="Main" main="Main" path="bin" />
  6.  
  7.     <window fps="30" background="0x333333" />
  8.     <window width="640" height="480" resizable="true" unless="mobile" />
  9.     <window fullscreen="true" if="mobile" />
  10.     <window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
  11.  
  12.     <source path="src" />
  13.  
  14.     <haxelib name="openfl" />
  15.     <haxelib name="openfl-bitfive" if="html5" />
  16.     <haxelib name="HaxePunk" />
  17.  
  18.     <assets path="assets/graphics" rename="gfx" include="*.png|*.jpg" />
  19.     <assets path="assets/audio" rename="audio" include="*.mp3" if="flash" />
  20.     <assets path="assets/audio" rename="audio" include="*.wav|*.ogg" unless="flash" />
  21.     <assets path="assets/font" rename="font" include="*.ttf" />
  22.  
  23.     <icon path="assets/HaxePunk.svg" />
  24. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement