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