AnimationClip.length 动画长度

var length : float

Description描述

Animation length in seconds (Read Only)

动画的长度,以秒计算(只读)

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public IEnumerator Awake() {
		animation.Play();
		yield return new WaitForSeconds(animation.clip.length);
	}
}
animation.Play();
// 等待动画完成
yield WaitForSeconds (animation.clip.length);
最后修改:2011年9月16日 Friday 10:05

本脚本参考基于Unity 3.4.1f5

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