Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/contentcreation/pps/bartonp/Exports/Checkpoint/Checkpoint_InnerRing.material @ 11310

Last change on this file since 11310 was 11310, checked in by bartonp, 7 years ago

Added message Boards

File size: 1.4 KB
RevLine 
[11310]1material Checkpoint_InnerRing
[11257]2{
[11310]3    set $diffuseCol "1 1 1 1"
4    set $specularCol "1 1 1"
5    set $shininess "32"
6 
[11257]7    technique
8    {
[11310]9        pass
[11257]10        {
[11310]11            illumination_stage ambient
12 
13            ambient 1 1 1 1
14            diffuse $diffuseCol
15            specular 0 0 0 0
16            emissive 0 0 0 0
17 
18            vertex_program_ref ambient_vs
[11257]19            {
[11310]20            }
21 
22            fragment_program_ref ambient_ps
23            {
24            }
25 
26            texture_unit diffuseMap
27            {
[11257]28                texture CheckpointTex.jpg
29            }
[11310]30 
31            texture_unit aoMap
32            {
33                texture CheckpointTex.jpg
34            }
[11257]35        }
[11310]36 
37        pass
38        {
39            illumination_stage per_light
40 
41            scene_blend add
42//            iteration once_per_light   not needed while   illumination_stage per_light   is used
43 
44            vertex_program_ref diffuse_vs
45            {
46            }
47 
48            fragment_program_ref diffuse_ps
49            {
50            }
51 
52            diffuse $diffuseCol
53            specular $specularCol $shininess
54            ambient 0 0 0 0
55 
56            texture_unit diffuseMap
57            {
58                texture CheckpointTex.jpg
59            }
60 
61            texture_unit specMap
62            {
63                texture CheckpointTex.jpg
64            }
65 
66            texture_unit normalMap
67            {
68                texture CheckpointNormal.png
69            }
70        }
[11257]71    }
[11310]72}
Note: See TracBrowser for help on using the repository browser.