Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AnimatorController.AddEffectiveStateMachineBehaviour

Switch to Manual
public function AddEffectiveStateMachineBehaviour(stateMachineBehaviourType: Type, state: Animations.AnimatorState, layerIndex: int): StateMachineBehaviour;

Parameters

Description

Adds a state machine behaviour class of type stateMachineBehaviourType to the AnimatorState for layer layerIndex. This function should be used when you are dealing with synchronized layer and would like to add a state machine behaviour on a synchronized layer. C# Users can use a generic version.

Note that there is no RemoveEffectiveStateMachineBehaviour(), to remove a state machine behaviour, use Object.Destroy.


public function AddEffectiveStateMachineBehaviour(state: Animations.AnimatorState, layerIndex: int): T;

Parameters

Description

Generic version. See the Generic Functions page for more details.