unity instant death of 2d character code example
Example: How to make a death zone in unity 2d
void Update() {
}
private void OnTriggerEnter2D(Collider2D collision)
{
if(collision.tag == "Player")
{
Destroy(collision.gameObject);
}
}
}