Commit 9d617db8 authored by 15김민규's avatar 15김민규

현재 맵의 총 몬스터 수를 구하는 메소드 구현

parent 0660f5e1
......@@ -75,6 +75,19 @@ public class EnemyManager : Singleton<EnemyManager>
return (EnemyDeadCount == EnemySpawnCount);
}
public int CountEnemyInMap()
{
int cnt = 0;
foreach(Transform obj in MapManager.currentRoom.transform)
{
if (obj.gameObject.CompareTag("enemy"))
{
cnt++;
}
}
return cnt;
}
// Object Pool
private void CreateEnemyPool()
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment