#pragma strict
var ninga1: GameObject;
function Start () {
}
function Update () {
if(Input.GetKeyDown(KeyCode.M)) {
particleSystem.Play();
}
transform.position.x= ninja1.transform.position.x;
}
the above code works fine in the editor., but when I update my code to following,
#pragma strict
var ninja1: GameObject;
function Start () {
}
function Update () {
for(touch in Input.touches)
if(touch.tapCount==3) {
particleSystem.Play();
}
transform.position.x=ninja1.transform.position.x;
}
the particles emit for a couple of times, maybe a few more times (sometimes), then that's it. Any kind of assistance would be apprciated. By the way, I had attached the above script to a Particle System in the Hierarchy.
↧