Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

edited radar material

File size: 1.3 KB
Line 
1
2
3
4material Orxonox/Red
5{
6        technique
7        {
8                pass
9                {
10                        lighting off
11                        depth_check off
12                        scene_blend colour_blend
13                        ambient 0 0 0 0.5
14
15                        texture_unit
16                        {
17                                texture OrxonoxRED.tga
18                        }
19                }
20        }
21}
22
23material Orxonox/Yellow
24{
25        technique
26        {
27                pass
28                {
29                        lighting off
30                        depth_check off
31                        scene_blend colour_blend
32                        ambient 0 0 0 0.5
33
34                        texture_unit
35                        {
36                                texture OrxonoxYELLOW.tga
37                        }
38                }
39        }
40}
41
42material Orxonox/Green
43{
44        technique
45        {
46                pass
47                {
48                        lighting off
49                        depth_check off
50                        scene_blend colour_blend
51                        ambient 0 0 0 0.5
52
53                        texture_unit
54                        {
55                                texture OrxonoxGREEN.tga
56                        }
57                }
58        }
59}
60
61material Orxonox/Black
62{
63        technique
64        {
65                pass
66                {
67                        lighting off
68                        depth_check off
69                        scene_blend colour_blend
70                        ambient 0 0 0 0.5
71
72                        texture_unit
73                        {
74                                texture OrxonoxBlack.tga
75                        }
76                }
77        }
78}
79
80material Orxonox/Radar
81{
82        technique
83        {
84                pass
85                {
86                        lighting off
87                        scene_blend alpha_blend
88                        depth_check off
89
90                        texture_unit
91                        {
92                                texture radar2.tga
93                        }
94                }
95        }
96}
97
98material Orxonox/RedPoint
99{
100        technique
101        {
102                pass
103                {
104                        lighting off
105                        scene_blend alpha_blend
106                        depth_check off
107
108                        texture_unit
109                        {
110                                texture dot1.tga
111                        }
112                }
113        }
114}
115
116
117material Orxonox/Crosshair
118{
119  technique
120  {
121    pass
122    {
123      lighting off
124      scene_blend alpha_blend
125      depth_check off
126
127      texture_unit
128      {
129        texture crosshair.tga
130      }
131    }
132  }
133}
Note: See TracBrowser for help on using the repository browser.