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

AnimationState.speed  

var speed : float

Description

The playback speed of the animation. 1 is normal playback speed.

A negative playback speed will play the animation backwards.

// Walk backwards
animation["Walk"].speed = -1.0;

// Walk at double speed
animation["Walk"].speed = 2;