AnimationState.clip 剪辑

var clip : AnimationClip

Description描述

The clip that is being played by this animation state.

此动画状态播放的剪辑。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(animation["walk"].clip.frameRate);
	}
}
// Prints the frame rate of the animation clip to the console
// 打印动画剪辑的帧率到控制台

print(animation["walk"].clip.frameRate);
最后修改:2011年1月7日 Friday 0:32

本脚本参考基于Unity 3.4.1f5

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