Collisions

This commit is contained in:
2025-09-05 16:05:05 +02:00
parent 649603e232
commit 38704518b0
32 changed files with 2773 additions and 2352 deletions

View File

@@ -100,8 +100,6 @@ public class EnemyAttack : MonoBehaviour
bool inRange = distance <= attackRange * 1.1f;
bool inAngle = IsPlayerInAttackAngle();
Debug.Log($"AttackRange Check - Distance: {distance}/{attackRange}, InRange: {inRange}, Angle: {inAngle}");
return inRange && inAngle;
}