コード例 #1
0
    void Start()
    {
        game = Game.instance;

        blueProgress = 0f;
        redProgress  = 0f;

        gameUI  = new GameUI(game);
        scrumUI = new ScrumUI(game);
        endUI   = new EndUI();        //game);
        touchUi = new TouchUI(game);

        currentState = UIState.NULL;
    }
コード例 #2
0
ファイル: UIManager.cs プロジェクト: sylafrs/rugby
    void Start()
    {
        game 				= Game.instance;

        blueProgress = 0f;
        redProgress  = 0f;

        gameUI 	= new GameUI(game);
        scrumUI = new ScrumUI(game);
        endUI 	= new EndUI();//game);
        touchUi = new TouchUI(game);

        currentState = UIState.NULL;
    }
コード例 #3
0
 void Awake()
 {
     gm = this;
 }