Beispiel #1
0
 /* Output the information of the box to the Debug.Log
  */
 public void ShowBoxInfo()
 {
     Debug.Log("Box ID: " + listBoxID.ToString() +
               ", Content ID: " + _contentID.ToString() +
               ", Content: " + _listBank.GetListContent(_contentID));
 }
Beispiel #2
0
 public void SetDisplayText(int contentID)
 {
     displayText.text  = "Selected content: ";
     displayText.text += contentBank.GetListContent(contentID);
 }