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

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。