1material Examples/Frost
2{
3	technique
4	{
5		pass
6		{
7			lighting off
8			depth_write off
9			scene_blend colour_blend
10
11			texture_unit 0
12			{
13				texture frost.png
14				scale 0.5 0.5
15			}
16
17			texture_unit 1
18			{
19				colour_op modulate
20			}
21		}
22	}
23}
24
25material Examples/VTDarkStuff
26{
27	technique
28	{
29		pass
30		{
31			diffuse 0.0 0.0 0.0
32			ambient 0.1 0.1 0.15
33			cull_hardware none
34			lighting off
35		}
36
37	}
38}
39