Advertisement
Guest User

Untitled

a guest
Mar 26th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.59 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <nifty xmlns="http://nifty-gui.sourceforge.net/nifty-1.3.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.       xsi:schemaLocation="http://nifty-gui.sourceforge.net/nifty-1.3.xsd http://nifty-gui.sourceforge.net/nifty-1.3.xsd">
  4.     <!-- Your IDE now tells you that one <screen></screen> element is expected here, etc. -->
  5.      
  6.     <!-- START SCREEN -->
  7.     <screen id="start" controller="NeomexGame.GUI.GameGUI">
  8.        
  9.         <!-- MAIN LAYER -->
  10.         <layer id="layer" childLayout="absolute">
  11.            
  12.             <!-- LEFT BOTTOM STATS -->
  13.             <panel id="stats panel" childLayout="absolute" height="160px" width="200px" x="0" y="560">
  14.                 <image filename="Interface/HUD/HUD.png" x="0" y="0"/>
  15.                
  16.                 <image id="health" filename="Interface/HUD/barRed.png" x="98" y="2"/>
  17.                 <image id="mentalhealth" filename="Interface/HUD/barOrange.png" x="98" y="24"/>
  18.                 <image id="stamina" filename="Interface/HUD/barYellow.png" x="98" y="46"/>
  19.                 <image id="exhaustion" filename="Interface/HUD/barPurple.png" x="98" y="68"/>
  20.                 <image id="hunger" filename="Interface/HUD/barBlue.png" x="98" y="90"/>
  21.                 <image id="thirst" filename="Interface/HUD/barAqua.png" x="98" y="112"/>
  22.                
  23.                 <text text="${CALL.getPlayerCapacity()} / ${CALL.getPlayerMaxCapacity()}"
  24.                      font="Interface/Fonts/Default.fnt" x="98" y="134" />
  25.                
  26.             </panel>
  27.         </layer>
  28.     </screen>
  29. </nifty>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement