Esempio n. 1
0
	void Awake ()
	{
		if (isLocalPlayer) {
			programUI = ProgramUI.Instance;
		}
		functionStack = new Stack<Vector3> ();
	}
Esempio n. 2
0
	// Use this for initialization
	void Awake ()
	{
		Instance = this;
		canvas = this.GetComponent<Canvas> ();
		BuildCommandDictionary ();
		functionZones = new List<FunctionZone> ();
		FindFunctionZones ();
		tileSize = Screen.height / 10;
		playHead = transform.GetComponentInChildren<PlayHead> ();
	}
Esempio n. 3
0
 public ListParts (ProgramUI ui)
 {
     this.ui = ui;
 }
Esempio n. 4
0
 public Info (ProgramUI ui)
 {
     this.ui = ui;
 }
Esempio n. 5
0
 public ListCrafts (ProgramUI ui)
 {
     this.ui = ui;
 }
Esempio n. 6
0
 public RemoveParts (ProgramUI ui)
 {
     this.ui = ui;
 }
Esempio n. 7
0
        static void Main(string[] args)
        {
            ProgramUI ui = new ProgramUI();

            ui.Run();
        }
Esempio n. 8
0
        static void Main(string[] args)
        {
            ProgramUI program = new ProgramUI();

            program.Run();
        }