Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/ogreode/demos/Media/kk3d.material @ 53

Last change on this file since 53 was 21, checked in by nicolasc, 17 years ago

added ogreode and Colladaplugin

File size: 974 bytes
Line 
1material kk3d/NatureI
2{
3        technique
4        {
5                pass
6                {
7                        // No dynamic lighting, fully lit
8                        lighting off
9
10                        // Depth writing off (always display stuff in front of it)
11                        depth_write off
12
13                        // Texture layer 0
14                        texture_unit
15                        {
16                                // 6-sided texture, stevecube_fr.jpg, stevecube_up.jpg etc
17                                cubic_texture nature01.tga separateUV
18                                // clamp to avoid fuzziness at edges due to filtering
19                                tex_address_mode clamp
20                        }
21                }
22        }
23}
24
25material kk3d/DesertVII
26{
27    receive_shadows off
28        technique
29        {
30                pass
31                {
32                        // No dynamic lighting, fully lit
33                        lighting off
34
35                        // Depth writing off (always display stuff in front of it)
36                        depth_write off
37
38                        // Texture layer 0
39                        texture_unit
40                        {
41                                // 6-sided texture, stevecube_fr.jpg, stevecube_up.jpg etc
42                                cubic_texture desert07_FR.jpg desert07_BK.jpg desert07_LF.jpg desert07_RT.jpg desert07_UP.jpg desert07_DN.jpg separateUV
43                                // clamp to avoid fuzziness at edges due to filtering
44                                tex_address_mode clamp
45                        }
46                }
47        }
48}
Note: See TracBrowser for help on using the repository browser.