Animation.clip 剪辑

var clip : AnimationClip

Description描述

The default animation.

默认的动画剪辑。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public IEnumerator Awake() {
		animation.Play(animation.clip.name);
		yield return new WaitForSeconds(animation.clip.length);
	}
}
animation.Play(animation.clip.name);
// Wait for the animation to have finished
// 等待动画完成。
yield WaitForSeconds (animation.clip.length);
最后修改:2011年1月12日 Wednesday 21:26

本脚本参考基于Unity 3.4.1f5

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