Beispiel #1
0
        public override void Initiate()
        {
            shellPool = new ShellPool();
            shellPool.InitiatePool();

            PreSpawnShells(maxSheelCount);
        }
 private void InitCollectablePool()
 {
     collectablePool = new CollectablesPool();
     collectablePool.InitiatePool();
 }
Beispiel #3
0
 private void initPlatformPool()
 {
     platformPool = new PlatformPool();
     platformPool.InitiatePool();
 }
Beispiel #4
0
 private void InitPool()
 {
     lazerPool = new LazerPool();
     lazerPool.InitiatePool();
 }
Beispiel #5
0
 private void InitObstaclePool()
 {
     obstaclePool = new ObstaclePool();
     obstaclePool.InitiatePool();
 }
 private void InitiatePool()
 {
     enemyPool = new EnemyPool();
     enemyPool.InitiatePool();
 }