Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/Media/materials/scripts/Orxonox.material @ 5137

Last change on this file since 5137 was 5117, checked in by FelixSchulthess, 16 years ago

added more colored dots

File size: 2.7 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/Black
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 OrxonoxBlack.tga
68                        }
69                }
70        }
71}
72
73material Orxonox/BarBackground
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 bar1.tga
86                        }
87                }
88        }
89}
90
91material Orxonox/Radar
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 radar.tga
104                        }
105                }
106        }
107}
108
109material Orxonox/RedDot
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 white.tga
122                        }
123                        texture_unit
124                        {
125                                colour_op_ex modulate src_manual src_current 1 0 0
126                        }
127                }
128        }
129}
130
131material Orxonox/GreenDot
132{
133        technique
134        {
135                pass
136                {
137                        lighting off
138                        scene_blend alpha_blend
139                        depth_check off
140
141                        texture_unit
142                        {
143                                texture white.tga
144                        }
145                        texture_unit
146                        {
147                                colour_op_ex modulate src_manual src_current 0 1 0
148                        }
149                }
150        }
151}
152
153material Orxonox/BlueDot
154{
155        technique
156        {
157                pass
158                {
159                        lighting off
160                        scene_blend alpha_blend
161                        depth_check off
162
163                        texture_unit
164                        {
165                                texture white.tga
166                        }
167                        texture_unit
168                        {
169                                colour_op_ex modulate src_manual src_current 0 0 1
170                        }
171                }
172        }
173}
174
175material Orxonox/YellowDot
176{
177        technique
178        {
179                pass
180                {
181                        lighting off
182                        scene_blend alpha_blend
183                        depth_check off
184
185                        texture_unit
186                        {
187                                texture white.tga
188                        }
189                        texture_unit
190                        {
191                                colour_op_ex modulate src_manual src_current 1 1 0
192                        }
193                }
194        }
195}
196
197material Orxonox/WhiteDot
198{
199        technique
200        {
201                pass
202                {
203                        lighting off
204                        scene_blend alpha_blend
205                        depth_check off
206
207                        texture_unit
208                        {
209                                texture white.tga
210                        }
211                }
212        }
213}
214
215material Orxonox/NavArrows
216{
217        technique
218        {
219                pass
220                {
221                        lighting off
222                        scene_blend alpha_blend
223                        depth_check off
224
225                        texture_unit
226                        {
227                                texture arrows.tga
228                        }
229                }
230        }
231}
232
233material Orxonox/NavTDC
234{
235        technique
236        {
237                pass
238                {
239                        lighting off
240                        scene_blend alpha_blend
241                        depth_check off
242
243                        texture_unit
244                        {
245                                texture tdc.tga
246                        }
247                }
248        }
249}
250
251material Orxonox/Crosshair
252{
253        technique
254        {
255                pass
256                {
257                        lighting off
258                        scene_blend alpha_blend
259                        depth_check off
260
261                        texture_unit
262                        {
263                                texture crosshair.tga
264                        }
265                }
266        }
267}
Note: See TracBrowser for help on using the repository browser.