Version: 2017.1
public AnimationClip clip ;

Description

Клип, который в настоящее время проигрывается на этом состоянии анимации.

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); } }