Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/tgidronFS16/data/overlays/HoverHUD.oxo @ 11192

Last change on this file since 11192 was 11192, checked in by tgidron, 8 years ago

New Floor, Level HUD, Pickups work

  • Property svn:eol-style set to native
File size: 2.8 KB
Line 
1<Template name="HoverHUD">
2  <OverlayGroup name="HoverHUD" scale = "1, 1">
3  </OverlayGroup>
4</Template>
5
6
7<Template name="spaceshiphoverhud">
8  <OverlayGroup name = "spaceshiphoverhud" scale = "1, 1">
9    <TimeHUD
10     name       = "TimerHUD"
11     position  = "0.95, 0.02"
12     pickpoint = "0.0, 0.0"
13     font      = "ShareTechMono"
14     textsize  = 0.05
15     colour    = "1.0, 1.0, 1.0, 1.0"
16     align     = "right"
17    />
18
19    <FlagHUD
20     name      = "FlagHUD"
21     position  = "0.05, 0.02"
22     size      = "0.18, 0.05"
23    />
24
25    <HUDHealthBar
26     name              = "HealthBar1"
27     background        = "Orxonox/HealthBarBackground"
28     size              = "0.35, 0.0875"
29     position          = "0.0 , 0.97"
30     pickpoint         = "0, 1"
31     bartexture        = "healthbar_bar.png"
32     textfont          = "VeraMono"
33     textusebarcolour  = true
34     textscale          = 0.4
35     textoffset        = "0.325, -0.825"
36     textpickpoint     = "0, 0"
37     textalign         = "right"
38     correctaspect     = true
39     iconmaterial      = "Orxonox/BarIconHealth"
40    >
41
42      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
43      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
44      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
45    </HUDHealthBar>
46
47
48
49    <OverlayText
50     position  = "0.02, 0.08"
51     pickpoint = "0.0, 0.0"
52     font      = "ShareTechMono"
53     textsize  = 0.04
54     colour    = "1.0, 1.0, 1.0, 1.0"
55     align     = "left"
56     caption   = "Total Flags: "
57    />
58
59    <OverlayText
60     position  = "0.02, 0.12"
61     pickpoint = "0.0, 0.0"
62     font      = "ShareTechMono"
63     textsize  = 0.04
64     colour    = "1.0, 1.0, 1.0, 1.0"
65     align     = "left"
66     caption   = "Lives: "
67    />
68
69    <OverlayText
70     position  = "0.02, 0.16"
71     pickpoint = "0.0, 0.0"
72     font      = "ShareTechMono"
73     textsize  = 0.04
74     colour    = "1.0, 1.0, 1.0, 1.0"
75     align     = "left"
76     caption   = "Level: "
77    />
78
79    <TFlagsLivesLevelHUD
80     position  = "0.14, 0.02"
81     pickpoint = "0.0, 0.0"
82     font      = "ShareTechMono"
83     textsize  = 0.04
84     colour    = "1.0, 1.0, 1.0, 1.0"
85     align     = "left"
86     showFlags = true
87     showLives = false
88     showLevel = false
89
90     />
91
92     <TFlagsLivesLevelHUD
93     position  = "0.14, 0.04"
94     pickpoint = "0.0, 0.0"
95     font      = "ShareTechMono"
96     textsize  = 0.04
97     colour    = "1.0, 1.0, 1.0, 1.0"
98     align     = "left"
99     showFlags = false
100     showLives = true
101     showLevel = false
102
103     />
104
105     <TFlagsLivesLevelHUD
106     position  = "0.14, 0.06"
107     pickpoint = "0.0, 0.0"
108     font      = "ShareTechMono"
109     textsize  = 0.04
110     colour    = "1.0, 1.0, 1.0, 1.0"
111     align     = "left"
112     showFlags = false
113     showLives = false
114     showLevel = true
115
116     />
117
118
119  </OverlayGroup>
120
121</Template>
122
123
124 
125
Note: See TracBrowser for help on using the repository browser.