Version: 2022.3
LanguageEnglish
  • C#

StateMachineBehaviour.OnStateExit(Animator animator, AnimatorStateInfo animatorStateInfo, int layerIndex)

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Parameters

animator The Animator evaluating this state machine.
animatorStateInfo Information about the exited state.
layerIndex The current layer being evaluated.

Description

Invoked on the last update frame when a state machine evaluates this state. Implement this message to react to a state ending.

OnStateExit is invoked when a transition to a state has completed or has been interrupted. It will be invoked before OnStateUpdate of the next state.
Note: OnStateExit may be invoked multiple times on the same state if that state is synchronized on multiple layers.