AStateMachine.OnUpdate C# (CSharp) Method

OnUpdate() public method

Raises the update event. Call this if you want this state machine to perform actions on Unity Update
public OnUpdate ( ) : void
return void
    public void OnUpdate()
    {
        this.currentState.OnUpdate();
    }