コード例 #1
0
 public void PageForward()// Turns the next page.
 {
     if (logbookScript.pageNumber < (logbookScript.displayColors.elements.Count - 1) / 9)
     {
         logbookScript.pageNumber++;
         Debug.Log("The page number is " + logbookScript.pageNumber);
         logbookScript.ClearLogbookPage();
         logbookScript.FillLogbookPageBasedOnPageNumber();
     }
 }