AddHighElevationMob()

Found in:

public void AddHighElevationMob(Transform mobSpawnPoint, int mobID)
    {
        if (mobSpawnPoint == null | mobSpawns.Count >= 5 | mobID < 0) return;

        mobSpawns.Add(mobSpawnPoint.gameObject);
        enemyConcentrationDict[mobID] += 1;
        Instantiate(SpawnMob(mobID), mobSpawnPoint.position, Quaternion.identity);
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *