Thread: Particles Help
View Single Post
  #2  
Old 12-30-2011, 05:11 PM
Gunderak Gunderak is offline
Coder
Gunderak's Avatar
Join Date: Jun 2011
Location: Australia
Posts: 795
Gunderak is on a distinguished road
Particles are a little tricky.
Do something like this.
PHP Code:
function onCreated(){
  
with(findimg(200)){
    
image "block.png";
      
with(emitter){
         
speed 5//The movement speed
         
emitautomaticly true//Makes it emit by its self
         
lifetime 5//How long a particle lives for
         //look up addlocalmodifier in rc script help I can't remember it.
         
addlocalmodifier("range"01"alpha""subtract" 0.05);
         
//It's something like that
         
emit();
       }
    }

Just play around with the add modifiers and change the variables you're editing until you get something you like.
__________________

Gund for president.

Remote PM {P*}x (Graal813044) from eraiphone -> Stefan: I hav 1 qustion
*Gunderak: he hav 1
*Gunderak: qustion
Reply With Quote