Ejemplo n.º 1
0
        private void DrawPools()
        {
            pools = controller.GetComponentsInChildren <Pool>();

            for (int i = 0; i < pools.Length; i++)
            {
                bool active = DrawPool(pools[i]);

                if (!active)
                {
                    break;
                }
            }
        }