Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/Samples/Media/materials/scripts/Example-DynTex.material @ 3

Last change on this file since 3 was 3, checked in by anonymous, 17 years ago

=update

File size: 943 bytes
Line 
1
2material Examples/DynaTest
3{
4        technique
5        {
6                pass
7                {
8                        texture_unit
9                        {
10                                texture DynaTex 2d
11                        }
12                        depth_write off
13                        scene_blend alpha_blend
14                        lighting off
15                }
16        }
17}
18
19
20material Examples/DynaTest2
21{
22        technique
23        {
24                pass
25                {
26                        texture_unit
27                        {
28                                texture DynaTex 2d
29                        }
30                        diffuse 0.8 0.8 0.8
31                        specular 0.7 0.7 0.7 40.0
32                        ambient 0.5 0.5 0.5
33                }
34        }
35}
36
37material Examples/DynaTest3
38{
39        technique
40        {
41                pass
42                {
43                        texture_unit
44                        {
45                                texture DynaTex 2d
46                        }
47                        diffuse 0.2 0.8 0.8
48                        specular 0.4 0.7 0.7 30.0
49                        ambient 0.2 0.5 1.0
50                        depth_write off
51                        scene_blend alpha_blend
52                }
53        }
54}
55
56material Examples/DynaTest4
57{
58        technique
59        {
60                pass
61                {
62                        texture_unit
63                        {
64                                texture DynaTex 2d
65                        }
66                        diffuse 0.8 0.8 0.8
67                        specular 0.7 0.7 0.4 20.0
68                        ambient 1.0 0.5 0.2
69                }
70        }
71}
72
73material Examples/VTDarkStuff
74{
75        technique
76        {
77                pass
78                {
79                        diffuse 0.0 0.0 0.0
80                        ambient 0.1 0.1 0.15
81                        cull_hardware none
82                        lighting on
83                }
84               
85        }
86}
Note: See TracBrowser for help on using the repository browser.