Esempio n. 1
0
 private void Start()
 {
     desktopUI = this.GetComponent <DesktopUI>();
     desktopUI.OnXplorerPress += this.showXplorer;
     setButtonListeners();
     showXplorer(false);
 }
Esempio n. 2
0
 private void Start()
 {
     input                    = FindObjectOfType <InputBehaviour>();
     myPlayerData             = FindObjectOfType <PlayerData>();
     myPlayerTriggerCollision = FindObjectOfType <PlayerTriggerCollision>();
     myComputerUI             = FindObjectOfType <DesktopUI>();
     StartCoroutine(myUpdate(.5f));
 }
Esempio n. 3
0
 private void setReferences()
 {
     desktopUI     = this.GetComponent <DesktopUI>();
     terminalInput = this.GetComponent <FetchTerminalInput>();
 }