Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

AnimationState

class in UnityEngine

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual

Descripción

The AnimationState gives full control over animation blending.

In most cases the Animation interface is sufficient and easier to use. Use the AnimationState if you need full control over the animation blending any playback process.

The AnimationState interface allows you to modify speed, weight, time and layers while any animation is playing. You can also setup animation mixing and wrapMode.

The Animation.

Variables

blendModeWhich blend mode should be used?
clipThe clip that is being played by this animation state.
enabledEnables / disables the animation.
lengthThe length of the animation clip in seconds.
nameThe name of the animation.
normalizedSpeedThe normalized playback speed.
normalizedTimeThe normalized time of the animation.
speedThe playback speed of the animation. 1 is normal playback speed.
timeThe current time of the animation.
weightThe weight of animation.
wrapModeWrapping mode of the animation.

Funciones Públicas

AddMixingTransformAdds a transform which should be animated. This allows you to reduce the number of animations you have to create.
RemoveMixingTransformRemoves a transform which should be animated.