Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/spaceNavigation/data/overlays/HUD.oxo @ 9400

Last change on this file since 9400 was 9400, checked in by mottetb, 12 years ago

first checkin

  • Property svn:eol-style set to native
File size: 2.7 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  <HUDAimAssistant
69   name                  = "AimAssistant"
70   correctAspect = true
71   pointerSize   = 0.03
72 />
73
74  <HUDRadar
75   name          = "Radar"
76   background    = "Orxonox/Radar"
77   correctAspect = true
78   size          = "0.17, 0.17"
79   position      = "0.5, 1.0"
80   pickPoint     = "0.5, 1.0"
81   rotation      = 0
82   sensitivity   = 1.0
83   halfDotSizeDistance = 3000
84   maximumDotSize      = 0.1
85  />
86
87  <ChatOverlay
88   name     = "chat"
89   position = "0.03, 0.5"
90   font     = "VeraMono"
91   caption  = ""
92   textSize = 0.025
93  />
94</OverlayGroup>
95
96
97<!-- DEBUG OVERLAY -->
98<OverlayGroup name = "Debug" scale = "1.0, 1.0" scroll = "0, 0" visible=false>
99
100  <DebugFPSText
101   name     = "FPSText"
102   position = "0.03, 0.05"
103   font     = "Monofur"
104   caption  = "Frames per second: "
105   textSize = 0.03
106  />
107
108  <DebugRTRText
109   name     = "RTRText"
110   position = "0.03, 0.09"
111   font     = "Monofur"
112   caption  = "Tick time in ms: "
113   textSize = 0.03
114  />
115</OverlayGroup>
Note: See TracBrowser for help on using the repository browser.