AStateMachine.OnUpdate C# (CSharp) Méthode

OnUpdate() public méthode

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