关键帧采样的帧率。(只读)
这是您用来创建动画或模型的动画程序中使用的帧率。
using UnityEngine; using System.Collections;
public class ExampleScript : MonoBehaviour { public Animation anim;
void Update() { // Prints the frame rate of the animation clip to the console print(anim["walk"].clip.frameRate); } }