Esempio n. 1
0
    public void FixedUpdate()
    {
        AState currentState = GetCurrentState();

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