Latest Plattforms Activity
This is a place to leverage your debugger.
foreach (Collider2D enemy in hitEnemies)
{
enemy.GetComponent<EnemyHealth>().TakeDamage(attackDamage);
}
Most likely the collider being processed doesn't have an EnemyHealth component attached.
There are only a few other ways you could get the erro…
Advertisement
Advertisement