Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/media/levels/hudtemplates3.oxw @ 5383

Last change on this file since 5383 was 5383, checked in by landauf, 15 years ago
  • Moved NotificationQueue to defaultHUD
  • Extended DM level
  • Added Pickups to the Quest-Test-Level
  • Property svn:eol-style set to native
File size: 2.5 KB
Line 
1<Template name="defaultHUD">
2  <OverlayGroup name = "chatoverlay" scale = "1, 1">
3    <ChatOverlay
4     name     = "chat"
5     position = "0.03, 0.5"
6     font     = "VeraMono"
7     caption  = ""
8     textsize = 0.025
9    />
10
11    <GametypeStatus
12     name     = "state"
13     position = "0.5, 0.85"
14     font     = "VeraMono"
15     textsize = 0.05
16     colour   = "1.0, 1.0, 0.0, 0.8"
17     align    = "center"
18    />
19
20    <NotificationQueue
21     name     = "notification"
22     position = "0.55, 0.05"
23     font     = "VeraMono"
24     textsize = 0.020
25     length   = 3
26     width    = 50
27    />
28  </OverlayGroup>
29</Template>
30
31<Template name="spectatorhud">
32  <OverlayGroup name = "spectatorhud" scale = "1, 1">
33  </OverlayGroup>
34</Template>
35
36<Template name="spaceshiphud">
37  <OverlayGroup name = "HUD" scale = "1, 1">
38    <HUDHealthBar
39     name              = "HealthBar1"
40     background        = "Orxonox/HealthBarBackground"
41     size              = "0.35, 0.0875"
42     position          = "0.0 , 0.95 "
43     pickpoint         = "0, 1"
44     bartexture        = "healthbar_bar.tga"
45     textfont          = "VeraMono"
46     textusebarcolour  = true
47     textsize          = 0.039
48     textoffset        = "0.315, 0.05"
49     textpickpoint     = "0, 0"
50     textalign         = "right"
51     correctaspect     = false
52     textcorrectaspect = false
53    >
54      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
55      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
56      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
57    </HUDHealthBar>
58
59    <HUDSpeedBar
60     name          = "SpeedBar1"
61     background    = "Orxonox/BarBackground"
62     size          = "0.35, 0.05"
63     position      = "0.0 , 1.0 "
64     pickpoint     = "0, 1"
65     correctaspect = false
66    >
67      <BarColour position = 0.0 colour = "0.7,0.5,0.2" />
68      <BarColour position = 0.5 colour = "0.2,0.7,0.2" />
69      <BarColour position = 1.0 colour = "0.7,0.2,0.2" />
70    </HUDSpeedBar>
71
72    <HUDNavigation
73     name          = "Navigation"
74     correctaspect = true
75     font          = "Monofur"
76     textsize      = 0.05
77     navMarkerSize = 0.03
78     aimMarkerSize = 0.04
79    />
80
81    <HUDRadar
82     name          = "Radar"
83     background    = "Orxonox/Radar"
84     correctaspect = true
85     size          = "0.17, 0.17"
86     position      = "1.0, 1.0"
87     pickpoint     = "1.0, 1.0"
88     rotation      = 0
89     sensitivity   = 1.0
90     halfDotSizeDistance = 3000
91     maximumDotSize      = 0.1
92    />
93  </OverlayGroup>
94</Template>
Note: See TracBrowser for help on using the repository browser.