Animation.Rewind 倒回
function Rewind (name : string) : void
Description描述
Rewinds the animation named name.
倒回名称为name的动画。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
animation.Rewind("walk");
}
}
// Rewind the walk animation to the start
// 倒回walk动画到开始。
animation.Rewind("walk");
• function Rewind () : void
Description描述
Rewinds all animations
倒回所有动画。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
animation.Rewind();
}
}
// Rewind all animations to the start
// 倒回所有动画到开始。
animation.Rewind();
最后修改:2011年4月28日 Thursday 9:47