Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

New Pickups (speed); Level Counter and Crate spawn (not working)

  • Property svn:eol-style set to native
File size: 3.0 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    <HUDNavigation
49     name          = "Navigation"
50     correctaspect = true
51     font          = "Monofur"
52     textsize      = 0.02
53     navMarkerSize = 0.03
54     aimMarkerSize = 0.02
55    />
56
57
58    <OverlayText
59     position  = "0.02, 0.08"
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     caption   = "Total Flags: "
66    />
67
68    <OverlayText
69     position  = "0.02, 0.12"
70     pickpoint = "0.0, 0.0"
71     font      = "ShareTechMono"
72     textsize  = 0.04
73     colour    = "1.0, 1.0, 1.0, 1.0"
74     align     = "left"
75     caption   = "Lives: "
76    />
77
78    <OverlayText
79     position  = "0.02, 0.16"
80     pickpoint = "0.0, 0.0"
81     font      = "ShareTechMono"
82     textsize  = 0.04
83     colour    = "1.0, 1.0, 1.0, 1.0"
84     align     = "left"
85     caption   = "Level: "
86    />
87
88    <TFlagsLivesLevelHUD
89     position  = "0.14, 0.02"
90     pickpoint = "0.0, 0.0"
91     font      = "ShareTechMono"
92     textsize  = 0.04
93     colour    = "1.0, 1.0, 1.0, 1.0"
94     align     = "left"
95     showFlags = true
96     showLives = false
97     showLevel = false
98
99     />
100
101     <TFlagsLivesLevelHUD
102     position  = "0.14, 0.04"
103     pickpoint = "0.0, 0.0"
104     font      = "ShareTechMono"
105     textsize  = 0.04
106     colour    = "1.0, 1.0, 1.0, 1.0"
107     align     = "left"
108     showFlags = false
109     showLives = true
110     showLevel = false
111
112     />
113
114     <TFlagsLivesLevelHUD
115     position  = "0.14, 0.06"
116     pickpoint = "0.0, 0.0"
117     font      = "ShareTechMono"
118     textsize  = 0.04
119     colour    = "1.0, 1.0, 1.0, 1.0"
120     align     = "left"
121     showFlags = false
122     showLives = false
123     showLevel = true
124
125     />
126
127
128  </OverlayGroup>
129
130</Template>
131
132
133 
134
Note: See TracBrowser for help on using the repository browser.