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.
#pragma strict public class Example extends MonoBehaviour { function OnAnimatorMove() { var animator: Animator = GetComponent.<Animator>(); if (animator) { var newPosition: Vector3 = transform.position; newPosition.x += animator.GetFloat("Runspeed") * Time.deltaTime; transform.position = newPosition; } } }
using UnityEngine; using System.Collections;
public class Example : MonoBehaviour { void OnAnimatorMove() { Animator animator = GetComponent<Animator>();
if (animator) { Vector3 newPosition = transform.position; newPosition.x += animator.GetFloat("Runspeed") * Time.deltaTime; transform.position = newPosition; } } }