Version: 5.6
public float length ;

説明

秒単位のアニメーションクリップの長さ

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { public Animation anim;

void Start() { // Print the length of the walk animation in seconds print(anim["Walk"].length); } }