Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/media/materials/scripts/Orxonox.material @ 5398

Last change on this file since 5398 was 5398, checked in by FelixSchulthess, 15 years ago

moved some textures to old_media

  • Property svn:eol-style set to native
File size: 2.8 KB
Line 
1material Orxonox/Red
2{
3        technique
4        {
5                pass
6                {
7                        lighting off
8                        scene_blend alpha_blend
9                        depth_check off
10
11                        texture_unit
12                        {
13                                texture bar2c.tga
14                        }
15                }
16        }
17}
18
19material Orxonox/Yellow
20{
21        technique
22        {
23                pass
24                {
25                        lighting off
26                        scene_blend alpha_blend
27                        depth_check off
28
29                        texture_unit
30                        {
31                                texture bar2b.tga
32                        }
33                }
34        }
35}
36
37material Orxonox/Green
38{
39        technique
40        {
41                pass
42                {
43                        lighting off
44                        scene_blend alpha_blend
45                        depth_check off
46
47                        texture_unit
48                        {
49                                texture bar2a.tga
50                        }
51                }
52        }
53}
54
55material Orxonox/White
56{
57        technique
58        {
59                pass
60                {
61                        lighting off
62                        scene_blend alpha_blend
63                        depth_check off
64
65                        texture_unit
66                        {
67                                texture bar2.tga
68                        }
69                }
70        }
71}
72
73material Orxonox/Black
74{
75        technique
76        {
77                pass
78                {
79                        lighting off
80                        scene_blend alpha_blend
81                        depth_check off
82
83                        texture_unit
84                        {
85                                texture OrxonoxBlack.tga
86                        }
87                }
88        }
89}
90
91material Orxonox/BarBackground
92{
93        technique
94        {
95                pass
96                {
97                        lighting off
98                        scene_blend alpha_blend
99                        depth_check off
100
101                        texture_unit
102                        {
103                                texture bar1.tga
104                        }
105                }
106        }
107}
108
109material Orxonox/HealthBarBackground
110{
111        technique
112        {
113                pass
114                {
115                        lighting off
116                        scene_blend alpha_blend
117                        depth_check off
118
119                        texture_unit
120                        {
121                                texture healthbar_bg.tga
122                        }
123                }
124        }
125}
126material Orxonox/Radar
127{
128        technique
129        {
130                pass
131                {
132                        lighting off
133                        scene_blend alpha_blend
134                        depth_check off
135
136                        texture_unit
137                        {
138                                texture radar.tga
139                        }
140                }
141        }
142}
143
144material Orxonox/RadarSquare
145{
146        technique
147        {
148                pass
149                {
150                        lighting off
151                        scene_blend alpha_blend
152                        depth_check off
153
154                        texture_unit
155                        {
156                                texture RadarSquare.tga
157                        }
158                }
159        }
160}
161
162material Orxonox/RadarMarker
163{
164        technique
165        {
166                pass
167                {
168                        lighting off
169                        scene_blend alpha_blend
170                        depth_check off
171
172                        texture_unit
173                        {
174                                texture console2.tga
175                        }
176                }
177        }
178}
179
180material Orxonox/WhiteDot
181{
182        technique
183        {
184                pass
185                {
186                        lighting off
187                        scene_blend alpha_blend
188                        depth_check off
189
190                        texture_unit
191                        {
192                                texture OrxonoxWhite.tga
193                        }
194                }
195        }
196}
197
198material Orxonox/GreenDot
199{
200        technique
201        {
202                pass
203                {
204                        lighting off
205                        scene_blend alpha_blend
206                        depth_check off
207
208                        texture_unit
209                        {
210                                texture OrxonoxWhite.tga
211                                colour_op_ex modulate src_manual src_current 0 1 0
212                        }
213                }
214        }
215}
216
217material Orxonox/NavArrows
218{
219        technique
220        {
221                pass
222                {
223                        lighting off
224                        scene_blend alpha_blend
225                        depth_check off
226
227                        texture_unit
228                        {
229                                texture arrows.tga
230                        }
231                }
232        }
233}
234
235material Orxonox/NavTDC
236{
237        technique
238        {
239                pass
240                {
241                        lighting off
242                        scene_blend alpha_blend
243                        depth_check off
244
245                        texture_unit
246                        {
247                                texture tdc.tga
248                        }
249                }
250        }
251}
252
253material Orxonox/NavCrosshair
254{
255        technique
256        {
257                pass
258                {
259                        lighting off
260                        scene_blend add
261                        depth_check off
262
263                        texture_unit
264                        {
265                                texture crosshair2.tga
266                        }
267                }
268        }
269}
270
271material Orxonox/Crosshair
272{
273        technique
274        {
275                pass
276                {
277                        lighting off
278                        scene_blend alpha_blend
279                        depth_check off
280
281                        texture_unit
282                        {
283                                texture crosshair.tga
284                        }
285                }
286        }
287}
Note: See TracBrowser for help on using the repository browser.