Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

StateMachine.OnStateMachineChanged

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

Declaration

public void OnStateMachineChanged(StateMachineLogger stateMachineLogger);

Parameters

Parameter Description
stateMachineLogger The StateMachineLogger that receives any errors or warnings related to the state machine, and provides access to information about what changes (added/deleted/modified states).

Description

Called after the state machine has changed.

Unity calls this method after any change to the state machine. Override it to validate the state machine's integrity and report issues using the provided StateMachineLogger, or react to specific changes via StateMachineLogger.StateMachineChanges. Use this method to detect invalid configurations, highlight issues in the editor, or provide user feedback. You can iterate the changed states efficiently without checking all states in the graph.

Do not modify the state machine within this method, as it may cause instability or recursive updates.