Esempio n. 1
0
 public void loadTutorial(TVCamera tvCamera)
 {
     if (tvCamera.isOn())
     {
         loadMission("example-mission.xml");
     }
 }
Esempio n. 2
0
 public void pauseGameClickedTVStart(TVCamera tvCamera)
 {
     // TODO!
     if (false && tvCamera.isOn())
     {
         pauseGame();
     }
 }
 public void setCurrentContent(TVContentSet content)
 {
     Debug.Log("CONTENT CHANGE");
     if (tvCamera.isOn())
     {
         if (this.currentContent != null)
         {
             this.currentContent.transform.gameObject.SetActive(false);
         }
         content.transform.gameObject.SetActive(true);
         this.currentContent = content;
         resetCamera();
     }
 }