I'm actually new at this, but hopefully this helps.
*One Shoot* = turn "Looping" off
*Autodestruct* =
`#pragma strict
function Start () {
}
function Update () {
if (!particleSystem.IsAlive()){
Destroy (this.gameObject);
}
}`
↧