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.clip  

var clip : AnimationClip

Description

The clip that is being played by this animation state.

JavaScript
// Prints the frame rate of the animation clip to the console
print(animation["walk"].clip.frameRate);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
print(animation["walk"].clip.frameRate);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
print(animation['walk'].clip.frameRate)