4 changed files with 89 additions and 12 deletions
@ -0,0 +1,38 @@ |
|||
// A sparkly purple fountain |
|||
particle_system TestParticles |
|||
{ |
|||
/* material MonkeyFur */ |
|||
particle_width 0.20 |
|||
particle_height 0.20 |
|||
// cull_each false |
|||
quota 500 |
|||
/* billboard_type oriented_self */ |
|||
|
|||
// Area emitter |
|||
emitter Point |
|||
{ |
|||
angle 0 |
|||
emission_rate 90 |
|||
time_to_live 3 |
|||
direction 0 -1 0 |
|||
velocity_min 0.1 |
|||
velocity_max 0.1 |
|||
colour_range_start 1 0 0 |
|||
colour_range_end 0 0 1 |
|||
} |
|||
|
|||
// Gravity |
|||
affector LinearForce |
|||
{ |
|||
force_vector -10 0 0 |
|||
force_application average |
|||
} |
|||
|
|||
// Fader |
|||
/* affector ColourFader */ |
|||
/* { */ |
|||
/* red -0.25 */ |
|||
/* green -0.25 */ |
|||
/* blue -0.25 */ |
|||
/* } */ |
|||
} |
Loading…
Reference in new issue