Version: 1.8
LanguageEnglish
  • C#

Animator.SetMotionWarpTarget

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

Switch to Manual

Declaration

public void SetMotionWarpTarget(string stateName, string intervalName, Transform target);

Declaration

public void SetMotionWarpTarget(string stateName, string intervalName, Vector3 targetPosition, Quaternion targetRotation);

Parameters

stateName The name of the state that contains the animation interval.
intervalName The name of the animation interval to set the motion warp target for.
target The Transform to use as the motion warp target.
targetPosition The position to use as the motion warp target.
targetRotation The rotation to use as the motion warp target.

Description

Sets a motion warp target for a specific animation interval in a state.

SetMotionWarpTarget assigns a target for motion warping in a specific animation interval. You can specify either a Transform target or a position and rotation target. This method prepares the motion warp but does not activate it until TriggerMotionWarp is called.