Quantcast
Channel: Answers by "Glister"
Viewing all articles
Browse latest Browse all 16

Answer by Glister

$
0
0
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(); }

Viewing all articles
Browse latest Browse all 16

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>