- Home /
 
 
               Question by 
               NorthernEagle · Jul 02, 2012 at 12:46 AM · 
                particleshurikenemitter  
              
 
              Shuriken particle system, how to emit?
Hello fellow Unity coders. Man, this new Shuriken particle system is a pain to code. Is there a good tutorial that is not the Graphs one, I would like to use actual textures. Thanks!
               Comment
              
 
               
               
               Best Answer 
              
 
              Answer by luozitian · Jul 02, 2012 at 06:21 AM
Post some little code for control the properties of particle system.
using UnityEngine; using System.Collections;
public class ParticleTest : MonoBehaviour {
 public ParticleSystem ps;
 
 void Awake() {
     
     ps.playOnAwake = false;
 
 }
 
               }
Answer by NorthernEagle · Jul 03, 2012 at 10:14 PM
Thanks luozitian, that's a great start to it! Much appreciated.
Your answer