Tutorial.TutorialAIManager.DelayShowAllSelectionRings C# (CSharp) Method

DelayShowAllSelectionRings() private method

private DelayShowAllSelectionRings ( ) : void
return void
        private void DelayShowAllSelectionRings()
        {
            foreach (Transform child in this.tutorialUnitParent.transform) {
                NewTutorialAIUnit unit = child.GetComponent<NewTutorialAIUnit>();
                if (unit != null) {
                    unit.ToggleSelectionRing(true);
                }
            }
        }