コード例 #1
0
ファイル: FiniteStateMachine.cs プロジェクト: Piechota/LD40
    public void FixedUpdate()
    {
        AState currentState = GetCurrentState();

        if (currentState != null)
        {
            currentState.FixedUpdate();
        }
    }