Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

AnimatorState.AddTransition

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

public method AddTransition(destinationState: Animations.AnimatorState): Animations.AnimatorStateTransition;
public Animations.AnimatorStateTransition AddTransition(Animations.AnimatorState destinationState);
public method AddTransition(destinationState: Animations.AnimatorState, defaultExitTime: bool): Animations.AnimatorStateTransition;
public Animations.AnimatorStateTransition AddTransition(Animations.AnimatorState destinationState, bool defaultExitTime);

Parameters

defaultExitTimeIf true, the exit time will be the equivalent of 0.25 second.
destinationStateThe destination state.

Description

Utility function to add an outgoing transition to the destination state.

The transition asset that is created is added as a sub asset of the state. This function pushes an Undo operation.


public method AddTransition(destinationStateMachine: Animations.AnimatorStateMachine): Animations.AnimatorStateTransition;
public Animations.AnimatorStateTransition AddTransition(Animations.AnimatorStateMachine destinationStateMachine);
public method AddTransition(destinationStateMachine: Animations.AnimatorStateMachine, defaultExitTime: bool): Animations.AnimatorStateTransition;
public Animations.AnimatorStateTransition AddTransition(Animations.AnimatorStateMachine destinationStateMachine, bool defaultExitTime);

Parameters

defaultExitTimeIf true, the exit time will be the equivalent of 0.25 second.
destinationStateMachineThe destination state machine.

Description

Utility function to add an outgoing transition to the destination state machine.

The transition asset that is created is added as a sub asset of the state. This function pushes an Undo operation.


public method AddTransition(transition: Animations.AnimatorStateTransition): void;
public void AddTransition(Animations.AnimatorStateTransition transition);

Parameters

transitionThe transition to add.

Description

Utility function to add an outgoing transition.

This function pushes an Undo operation.

Did you find this page useful? Please give it a rating: