Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/data/overlays/HUDTemplatesFPS.oxo @ 11353

Last change on this file since 11353 was 11353, checked in by patricwi, 7 years ago

merged HUD branch to trunk

  • Property svn:eol-style set to native
File size: 3.9 KB
Line 
1<Template name="fpshud">
2  <OverlayGroup name = "fpshud" scale = "1, 1">
3    <Map />
4
5    <HUDHealthBar
6     name              = "HealthBar1"
7     background        = "Orxonox/HealthBarBackground"
8     size              = "0.40, 0.08"
9     position          = "0.0 , 0.95 "
10     pickpoint         = "0, 1"
11     bartexture        = "healthbar_bar.png"
12     textfont          = "VeraMono"
13     textusebarcolour  = true
14     textscale          = 0.4
15     textoffset        = "0.325, -0.825"
16     textpickpoint     = "0, 0"
17     textalign         = "right"
18     correctaspect     = true
19     iconmaterial      = "Orxonox/BarIconHealth"
20    >
21      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
22      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
23      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
24    </HUDHealthBar>
25
26    <HUDShieldBar
27     name          = "ShieldBar1"
28     background    = "Orxonox/BarBackground"
29     size          = "0.40, 0.04"
30     position      = "0.0 , 1.0 "
31     pickpoint     = "0, 1"
32     correctaspect = true
33     iconmaterial  = "Orxonox/BarIconShield"
34    >
35      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
36      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
37      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
38    </HUDShieldBar>
39
40    <HUDEnemyHealthBar
41     name              = "EnemyHealthBar"
42     background        = "Orxonox/HealthBarBackground"
43     size              = "0.4, 0.08"
44     position          = "1 ,0"
45     pickpoint         = "1, 0"
46     bartexture        = "healthbar_bar.png"
47     textfont          = "VeraMono"
48     textusebarcolour  = true
49     textscale         = 0.4
50     textoffset        = "-0.675, 0.175"
51     textpickpoint     = "0, 0"
52     textalign         = "right"
53     correctaspect     = true
54     iconmaterial      = "Orxonox/BarIconHealth"
55    >
56      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
57      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
58      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
59    </HUDEnemyHealthBar>
60
61    <HUDEnemyShieldBar
62     name          = "EnemyShieldBar1"
63     background    = "Orxonox/BarBackground"
64     size          = "0.40, 0.04"
65     position      = "1.0 , 0.1 "
66     pickpoint     = "1, 0"
67     correctaspect = true
68     iconmaterial  = "Orxonox/BarIconShield"
69    >
70      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
71      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
72      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
73    </HUDEnemyShieldBar>
74
75    <HUDNavigation
76     name          = "Navigation"
77     correctaspect = true
78     font          = "Monofur"
79     textsize      = 0.02
80     navMarkerSize = 0.03
81     aimMarkerSize = 0.04
82    />
83
84    <HUDRadar
85     name          = "Radar"
86     background    = "Orxonox/Radar"
87     correctaspect = true
88     size          = "0.17, 0.17"
89     position      = "1.0, 1.0"
90     pickpoint     = "1.0, 1.0"
91     rotation      = 0
92     sensitivity   = 1.0
93     halfDotSizeDistance = 3000
94     maximumDotSize      = 0.1
95    />
96
97    <HUDWeaponSystem
98     name                   = "WeaponSystem"
99     correctaspect          = true
100     position               = "0.01, 0.01"
101     pickpoint              = "0, 0"
102     visible                = "true"
103     weaponModeHUDSize      = "0.09, 0.03"
104    />
105
106    <HUDPickupSystem
107     name                   = "PickupSystem"
108     correctaspect          = true
109     position               = "0.45, 0.95"
110     pickpoint              = "0.0, 0.0"
111     visible                = "true"
112    />
113
114    <HUDTimer
115     name     = "Timer"
116     position = "0.5, 0.85"
117     font     = "VeraMono"
118     textsize = 0.1
119     colour   = "1.0, 1.0, 0.0, 0.8"
120     align    = "center"
121    />
122
123    <GUIOverlay
124      name = "QuestGUI"
125      guiname = "QuestGUI"
126      visible = "false"
127    />
128   
129    <GUIOverlay
130      name = "PickupInventory"
131      guiname = "PickupInventory"
132      visible = "false"
133    />
134
135  </OverlayGroup>
136</Template>
Note: See TracBrowser for help on using the repository browser.