Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentationHS13/data/overlays/InvaderHUD.oxo @ 9900

Last change on this file since 9900 was 9900, checked in by smerkli, 10 years ago

Merged the invaders branch of Florian

File size: 2.7 KB
Line 
1<Template name="InvaderHUD">
2  <OverlayGroup name="InvaderHUD" scale = "1, 1">
3    <InvaderHUDinfo
4     position  = "0.14, 0.02"
5     pickpoint = "0.0, 0.0"
6     font      = "ShareTechMono"
7     textsize  = 0.04
8     colour    = "1.0, 1.0, 1.0, 1.0"
9     align     = "left"
10
11     showlives     = true
12     showlevel     = false
13     showpoints     = false
14    />
15    <OverlayText
16     position  = "0.02, 0.02"
17     pickpoint = "0.0, 0.0"
18     font      = "ShareTechMono"
19     textsize  = 0.04
20     colour    = "1.0, 1.0, 1.0, 1.0"
21     align     = "left"
22     caption   = "Lives:   "
23    />
24
25    <OverlayText
26     position  = "0.02, 0.055"
27     pickpoint = "0.0, 0.0"
28     font      = "ShareTechMono"
29     textsize  = 0.04
30     colour    = "1.0, 1.0, 1.0, 1.0"
31     align     = "left"
32     caption   = "Level: "
33    />
34
35    <InvaderHUDinfo
36     position  = "0.14, 0.055"
37     pickpoint = "0.0, 0.0"
38     font      = "ShareTechMono"
39     textsize  = 0.04
40     colour    = "1.0, 1.0, 1.0, 1.0"
41     align     = "left"
42
43     showlives     = false
44     showlevel     = true
45     showpoints     = false
46    />
47
48    <OverlayText
49     position  = "0.02, 0.1"
50     pickpoint = "0.0, 0.0"
51     font      = "ShareTechMono"
52     textsize  = 0.04
53     colour    = "1.0, 1.0, 1.0, 1.0"
54     align     = "left"
55     caption   = "Points: "
56    />
57
58    <InvaderHUDinfo
59     position  = "0.14, 0.1"
60     pickpoint = "0.0, 0.0"
61     font      = "ShareTechMono"
62     textsize  = 0.04
63     colour    = "1.0, 1.0, 1.0, 1.0"
64     align     = "left"
65
66     showlives     = false
67     showlevel     = false
68     showpoints     = true
69    />
70
71    <InvaderHUDinfo
72     position  = "0.25, 0.1"
73     pickpoint = "0.0, 0.0"
74     font      = "ShareTechMono"
75     textsize  = 0.04
76     colour    = "1.0, 1.0, 1.0, 1.0"
77     align     = "left"
78
79     showMultiplier = true
80    />
81  </OverlayGroup>
82</Template>
83
84
85<Template name="spaceshiphud">
86  <OverlayGroup name = "spaceshiphud" scale = "1, 1">
87    <HUDHealthBar
88     name              = "HealthBar1"
89     background        = "Orxonox/HealthBarBackground"
90     size              = "0.35, 0.0875"
91     position          = "0.0 , 0.9 "
92     pickpoint         = "0, 1"
93     bartexture        = "healthbar_bar.png"
94     textfont          = "VeraMono"
95     textusebarcolour  = true
96     textsize          = 0.039
97     textoffset        = "0.315, 0.05"
98     textpickpoint     = "0, 0"
99     textalign         = "right"
100     correctaspect     = false
101     textcorrectaspect = false
102    >
103      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
104      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
105      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
106    </HUDHealthBar>
107 </OverlayGroup>
108</Template>
Note: See TracBrowser for help on using the repository browser.