Exemplo n.º 1
0
	void Awake ()
	{
		if (isLocalPlayer) {
			programUI = ProgramUI.Instance;
		}
		functionStack = new Stack<Vector3> ();
	}
Exemplo 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> ();
	}
Exemplo n.º 3
0
 public ListParts (ProgramUI ui)
 {
     this.ui = ui;
 }
Exemplo n.º 4
0
 public Info (ProgramUI ui)
 {
     this.ui = ui;
 }
Exemplo n.º 5
0
 public ListCrafts (ProgramUI ui)
 {
     this.ui = ui;
 }
Exemplo n.º 6
0
 public RemoveParts (ProgramUI ui)
 {
     this.ui = ui;
 }
Exemplo n.º 7
0
        static void Main(string[] args)
        {
            ProgramUI ui = new ProgramUI();

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

            program.Run();
        }