Example #1
0
 public void OnAllStart()
 {
     AllButtons.ForEach(b => b.interactable = false);
     allStop.interactable = true;
 }
Example #2
0
 protected override void ChildButtonsLogicActivate()
 {
     AllButtons.ForEach(x => x.enabled = true);
 }
Example #3
0
 public void OnStopButton()
 {
     AllButtons.ForEach(b => b.interactable      = false);
     AllStartButtons.ForEach(b => b.interactable = true);
 }