Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SpaceshipNavigation2/data/overlays/HUD.oxo @ 9396

Last change on this file since 9396 was 9396, checked in by soroa, 12 years ago

Created a new class called FindClosestEnemy

  • Property svn:eol-style set to native
File size: 2.8 KB
Line 
1<!-- HUD OVERLAY -->
2<OverlayGroup name = "HUD" scale = "1, 1">
3
4  <HUDSpeedBar
5   name       = "SpeedBar1"
6   background = "Orxonox/BarBackground"
7   size       = "0.35, 0.05"
8   position   = "0.0 , 1.0 "
9   pickPoint  = "0, 1"
10   value      = 0
11  >
12    <BarColour position = 0.7 colour = "0.2,0.7,0.2" />
13    <BarColour position = 0.4 colour = "0.7,0.5,0.2" />
14    <BarColour position = 0.1 colour = "0.7,0.2,0.2" />
15  </HUDSpeedBar>
16
17  <!--HUDSpeedBar
18   name       = "SpeedBar2"
19   background = "Orxonox/BarBackground"
20   size       = "0.35, 0.05"
21   position   = "1.0 , 1.0 "
22   pickPoint  = "1, 1"
23   value      = 0
24   rightToLeft = true
25  >
26    <BarColour position = 0.7 colour = "0.2,0.7,0.2" />
27    <BarColour position = 0.4 colour = "0.7,0.5,0.2" />
28    <BarColour position = 0.1 colour = "0.7,0.2,0.2" />
29  </HUDSpeedBar>
30
31  <HUDSpeedBar
32   name       = "SpeedBar3"
33   background = "Orxonox/BarBackground"
34   size       = "0.35, 0.05"
35   position   = "1.0 , 0.0 "
36   pickPoint  = "1, 0"
37   value      = 0
38   rightToLeft = true
39  >
40    <BarColour position = 0.7 colour = "0.2,0.7,0.2" />
41    <BarColour position = 0.4 colour = "0.7,0.5,0.2" />
42    <BarColour position = 0.1 colour = "0.7,0.2,0.2" />
43  </HUDSpeedBar>
44
45  <HUDSpeedBar
46   name       = "SpeedBar4"
47   background = "Orxonox/BarBackground"
48   size       = "0.35, 0.05"
49   position   = "0.0 , 0.0 "
50   pickPoint  = "0, 0"
51   rotation   = 0
52   value      = 0
53  >
54    <BarColour position = 0.7 colour = "0.2,0.7,0.2" />
55    <BarColour position = 0.4 colour = "0.7,0.5,0.2" />
56    <BarColour position = 0.1 colour = "0.7,0.2,0.2" />
57  </HUDSpeedBar-->
58
59  <HUDNavigation
60   name          = "Navigation"
61   correctAspect = true
62   font          = "Monofur"
63   textSize      = 0.05
64   navMarkerSize = 0.03
65   aimMarkerSize = 0.04
66  />
67
68  <HUDRadar
69   name          = "Radar"
70   background    = "Orxonox/Radar"
71   correctAspect = true
72   size          = "0.17, 0.17"
73   position      = "0.5, 1.0"
74   pickPoint     = "0.5, 1.0"
75   rotation      = 0
76   sensitivity   = 1.0
77   halfDotSizeDistance = 3000
78   maximumDotSize      = 0.1
79  />
80  <HUDFindClosestEnemy
81   name          = "FindClosestEnemy"
82   correctAspect = true
83   font          = "Monofur"
84   textSize      = 0.05
85 
86  />
87
88  <ChatOverlay
89   name     = "chat"
90   position = "0.03, 0.5"
91   font     = "VeraMono"
92   caption  = ""
93   textSize = 0.025
94  />
95  <FindClosestEnemy
96 
97 
98 
99  />
100</OverlayGroup>
101
102
103<!-- DEBUG OVERLAY -->
104<OverlayGroup name = "Debug" scale = "1.0, 1.0" scroll = "0, 0" visible=false>
105
106  <DebugFPSText
107   name     = "FPSText"
108   position = "0.03, 0.05"
109   font     = "Monofur"
110   caption  = "Frames per second: "
111   textSize = 0.03
112  />
113
114  <DebugRTRText
115   name     = "RTRText"
116   position = "0.03, 0.09"
117   font     = "Monofur"
118   caption  = "Tick time in ms: "
119   textSize = 0.03
120  />
121</OverlayGroup>
Note: See TracBrowser for help on using the repository browser.