Manual     Reference     Scripting  
  
Scripting > Runtime Classes > AnimationState   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • AnimationState
  • All Members
  • Variables
  • blendMode
  • clip
  • enabled
  • layer
  • length
  • name
  • normalizedSpeed
  • normalizedTime
  • speed
  • time
  • weight
  • wrapMode
  • Functions
  • AddMixingTransform
  • RemoveMixingTransform

AnimationState.length  

var length : float

Description

The length of the animation clip in seconds.

JavaScript
// Print the length of the walk animation in seconds
print (animation["Walk"].length);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
print(animation["Walk"].length);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
print(animation['Walk'].length)