キーフレームがサンプリングされるときのフレームレート(読み取り専用)。
これはアニメーションプログラムで使用されたフレームレートです。 アニメーションやモデルの作成で使用します。
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); } }