コード例 #1
0
ファイル: GameManager.cs プロジェクト: Hamsting/AlGGaGi
    public void NextTurn()
    {
        if (IsSelectingDoll())
        {
            DeselectDoll();
        }
        if (u.actSelect.opened)
        {
            u.CloseActSelect();
        }
        u.SetDollControlAimActive(false);

        /*
         * CancelControl
         * if (u.cancelControlOpened)
         *      u.CloseCancelControl();
         */

        StartCoroutine(WaitAndNextTurn());
    }