Example #1
0
 public void switchBetweenItemsDown()
 {
     if (indexDown >= theItemList.Count - 1)
     {
         return;
     }
     else
     {
         indexDown = selectionIndex + 1;
         theItemList[selectionIndex].SetActive(false);
         selectionIndex = indexDown;
         theItemList[selectionIndex].SetActive(true);
         theSelectionPanelScript.SlideDown();
     }
 }