Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

MonoBehaviour.OnAnimatorMove()

Switch to Manual

Description

Callback for processing animation movements for modifying root motion.

This callback will be invoked at each frame after the state machines and the animations have been evaluated, but before OnAnimatorIK.

See Also: Root motion.

	function OnAnimatorMove() {

var animator = GetComponent.<Animator>();

if (animator) {

var newPosition = transform.position;

newPosition.z += animator.GetFloat("Runspeed") * Time.deltaTime;

transform.position = newPosition;

}

}