Frame rate at which keyframes are sampled. (Read Only)
Это частота кадров, которая будет использована в Анимационная программа, используемая вами для создания анимаций или моделей.
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); } }