source: GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPParticles/GTP_Particles.particle @ 2294

Revision 2294, 2.3 KB checked in by szirmay, 17 years ago (diff)
Line 
1GTP/SBB
2{
3        renderer sprite
4        material        GTP/SBB/Basic
5        particle_width  200
6    particle_height 200
7    cull_each       false
8    quota           30
9   
10    // Area emitter
11    emitter Box
12    {
13       // colour 0.7 0.8 0.3 0
14        colour_range_start 1 1 1 0
15                colour_range_end 0.8 1 0.5 0
16
17        angle           30
18        emission_rate   6
19        time_to_live    3
20        direction       0 1 0
21        velocity        0
22        width           120
23        height          120
24        depth           30
25    }
26    // Make em float upwards
27    affector LinearForce
28    {
29        force_vector      0 40 0
30        force_application add
31    }
32    affector ColourFader2
33    {
34       alpha1 +0.5
35       alpha2 -0.5
36       state_change 0.5
37    }
38}
39
40GTP/HPS/Smoke_Large
41{
42        renderer sprite
43       
44        material                GTP/HPS/Smoke_L_Depth_Illum
45        particle_width  1.6
46    particle_height 1.6
47    cull_each       false
48    quota           200
49    sorted                      true
50    //billboard_type  point
51   
52    // Area emitter
53    emitter Box
54    {
55       colour 1 1 1 0
56       //colour_range_start 1 1 1 0
57           //colour_range_end 1 1 1 0
58
59        angle           30
60        emission_rate   3
61        time_to_live    10
62        direction       0 1 0
63        velocity        20
64        width           70       
65        height          70
66        depth           70
67    }
68    // Make em float upwards
69  //  affector LinearForce
70  //  {
71  //      force_vector      0 40 0
72  //      force_application add
73  //  }
74
75    affector ColourFader2
76    {
77       alpha1 +0.5
78       alpha2 -0.5
79       state_change 3
80    }
81}
82
83
84GTP/HPS/Smoke_Little
85{
86        material        GTP/HPS/Smoke_S
87        renderer sprite
88    particle_width  45
89    particle_height 45
90    cull_each       false
91    quota           400
92    //billboard_type  point
93   
94    // Area emitter
95    emitter Ellipsoid
96    {
97        colour 1 1 1 0
98        //colour_range_start 1 1 1 0
99                //colour_range_end 1 1 1 0
100        angle           160
101        emission_rate   20
102        time_to_live    6
103        direction       0 1 0
104        velocity        8
105       
106        width           20       
107        height          20
108        depth           20   
109    }
110    affector ColourFader2
111    {
112       alpha1 +0.5
113       alpha2 -0.5
114       state_change 2
115    }
116}
Note: See TracBrowser for help on using the repository browser.