예제 #1
0
 public void OnPressNext()
 {
     if (buttonClickSource != null)
     {
         buttonClickSource.Play();
     }
     if (scrollIndex == maxScrollIndex)
     {
         scrollIndex = 1;
     }
     else
     {
         scrollIndex = scrollIndex + 1;
     }
     viewUpdate.ActivateObjects(scrollIndex);
 }