Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/SuperOrxoBros_HS18/data/overlays/HUDTemplatesFPS.oxo @ 12175

Last change on this file since 12175 was 12175, checked in by siramesh, 5 years ago

Super Orxo Bros (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 4.0 KB
Line 
1<Template name="fpshud">
2  <OverlayGroup name = "fpshud" scale = "1, 1">
3    <HUDHealthBar
4     name              = "HealthBar1"
5     background        = "Orxonox/HealthBarBackground"
6     size              = "0.40, 0.08"
7     position          = "0.0 , 0.95 "
8     pickpoint         = "0, 1"
9     bartexture        = "healthbar_bar.png"
10     textfont          = "VeraMono"
11     textusebarcolour  = true
12     textscale          = 0.4
13     textoffset        = "0.325, -0.825"
14     textpickpoint     = "0, 0"
15     textalign         = "right"
16     correctaspect     = true
17     iconmaterial      = "Orxonox/BarIconHealth"
18    >
19      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
20      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
21      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
22    </HUDHealthBar>
23
24    <HUDShieldBar
25     name          = "ShieldBar1"
26     background    = "Orxonox/BarBackground"
27     size          = "0.40, 0.04"
28     position      = "0.0 , 1.0 "
29     pickpoint     = "0, 1"
30     correctaspect = true
31     iconmaterial  = "Orxonox/BarIconShield"
32    >
33      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
34      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
35      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
36    </HUDShieldBar>
37
38    <HUDEnemyHealthBar
39     name              = "EnemyHealthBar"
40     background        = "Orxonox/HealthBarBackground"
41     size              = "0.4, 0.08"
42     position          = "1 ,0"
43     pickpoint         = "1, 0"
44     bartexture        = "healthbar_bar.png"
45     textfont          = "VeraMono"
46     textusebarcolour  = true
47     textscale         = 0.4
48     textoffset        = "-0.675, 0.175"
49     textpickpoint     = "0, 0"
50     textalign         = "right"
51     correctaspect     = true
52     iconmaterial      = "Orxonox/BarIconHealth"
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    </HUDEnemyHealthBar>
58
59    <HUDEnemyShieldBar
60     name          = "EnemyShieldBar1"
61     background    = "Orxonox/BarBackground"
62     size          = "0.40, 0.04"
63     position      = "1.0 , 0.1 "
64     pickpoint     = "1, 0"
65     correctaspect = true
66     iconmaterial  = "Orxonox/BarIconShield"
67    >
68      <BarColour position = 0.0 colour = "0.7,0.2,0.2" />
69      <BarColour position = 0.5 colour = "0.7,0.7,0.2" />
70      <BarColour position = 1.0 colour = "0.2,0.7,0.2" />
71    </HUDEnemyShieldBar>
72
73    <HUDNavigation
74     name          = "Navigation"
75     correctaspect = true
76     font          = "Monofur"
77     textsize      = 0.02
78     navMarkerSize = 0.03
79     aimMarkerSize = 0.04
80    />
81
82    <HUDRadar
83     name          = "Radar"
84     background    = "Orxonox/Radar"
85     correctaspect = true
86     size          = "0.17, 0.17"
87     position      = "1.0, 1.0"
88     pickpoint     = "1.0, 1.0"
89     rotation      = 0
90     sensitivity   = 1.0
91     halfDotSizeDistance = 3000
92     maximumDotSize      = 0.1
93    />
94
95    <HUDWeaponSystem
96     name                   = "WeaponSystem"
97     correctaspect          = true
98     position               = "0.01, 0.01"
99     pickpoint              = "0, 0"
100     visible                = "true"
101     weaponModeHUDSize      = "0.09, 0.03"
102    />
103
104    <HUDPickupSystem
105     name                   = "PickupSystem"
106     background             = "PickupBar"
107     correctaspect          = true
108     size                   = "0.20, 0.08"
109     position               = "0.01, 0.15"
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.