go | The animated game object. |
time | The time to sample an animation. |
Muestra una animación a un tiempo dado para cualquier propiedad del componente que sea animada.
Se recomienda usar en su lugar la interfaz Animation por motivos de desempeño.
Esta función mostrará una animation
al tiempo fijado en time
.
Cualquiera de las propiedades de componente que sean animadas en el clip serán reemplazadas con las propiedades del valor mostrado.
Most of the time you want to use Animation.Play instead. SampleAnimation is useful when you need to jump between frames in an unordered way or
basado en alguna entrada especial.
See Also: Animation.
// Plays an animation clip backwards by sampling it every frame. var clip : AnimationClip; function Update() { clip.SampleAnimation(gameObject, clip.length - Time.time); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public AnimationClip clip; void Update() { clip.SampleAnimation(gameObject, clip.length - Time.time); } }