Animation.Rewindfunction Rewind (name : String) : voidDescriptionRewinds the animation named name.
JavaScripts
// Rewind the walk animation to the start
animation.Rewind("walk"); using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { animation.Rewind("walk"); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): animation.Rewind('walk') function Rewind () : voidDescriptionRewinds all animations
JavaScripts
// Rewind all animations to the start
animation.Rewind(); using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { animation.Rewind(); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): animation.Rewind() |
