コード例 #1
0
ファイル: TTUICore.cs プロジェクト: jixiang111/TTUI-Framework
  	public static void Create()
  	{
    	if(tt != null)
			return;
      	tt = new TTUICore();
    	tt.ttFrameMgr = new TTUIFrameManager();
  	}
コード例 #2
0
	// Use this for initialization
	void Start () {
		TTUICore.Create();

		//
		TTUITestFactory uifact = new TTUITestFactory();
		uifact.BuildCommonUIFrame();
		uifact.RegisterUIFrameAssetes();

	}
コード例 #3
0
 public static void Create()
 {
     if (tt != null)
     {
         return;
     }
     tt            = new TTUICore();
     tt.ttFrameMgr = new TTUIFrameManager();
 }
コード例 #4
0
	// Update is called once per frame
	void Update () {
		TTUICore.Update();	
	}