Tutorial.TutorialAIManager.DelayHideAllSelectionRings C# (CSharp) Method

DelayHideAllSelectionRings() private method

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