Animation.isPlaying 是否在播放?

var isPlaying : bool

Description描述

Are we playing any animations?

是否在播放任何动画?

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnMouseEnter() {
		if (!animation.isPlaying)
		animation.Play();

	}
}
// Plays an animation only if we are not playing it already.
// 只在我们没有播放一个动画的时候,播放它。
function OnMouseEnter() {
	if (!animation.isPlaying)
		animation.Play();
}
最后修改:2011年1月12日 Wednesday 21:46

本脚本参考基于Unity 3.4.1f5

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