hey i used the tornadotwins tutorial and i need the fire ball with a tag to hit a wall how do i do this
1 Answer
1use this script to delete the bullet object
function OnTriggerEnter( hit : Collider)
{
if(hit.gameObject.tag == "enemyProjectile") { Destroy(hit.gameObject); } }