if you want it to call kill self on a collision and not after three seconds you would change your code to:
#pragma strict
var Jack : GameObject;
function KillSelf () {
var JackBreak = Instantiate(Jack, transform.position, transform.rotation);
Destroy(gameObject);
}
function OnCollisionEnter(collision : Collision) {
KillSelf();
}
and it doesn't matter if your collision detection function is above or below the other code it will call it from where ever it is.
It also looks like you may only want it to KillSelf if it hits certain objects? if this is the case you can check against that as well. change KillSelf above to:
if ( collision.gameObject.tag == "DestroyObject" ){
KillSelf();
}
↧