Package | away3d.core.base |
Class | public class AnimationSequence |
Property | Defined by | ||
---|---|---|---|
fps : Number
Determines the speed of playback in frames per second.
| AnimationSequence | ||
loop : Boolean
Determines whether the animation sequence should loop.
| AnimationSequence | ||
prefix : String
The prefix string defining frames in the sequence.
| AnimationSequence | ||
smooth : Boolean
Determines if the animation should be smoothed (interpolated) between frames.
| AnimationSequence |
Method | Defined by | ||
---|---|---|---|
AnimationSequence
(prefix:String, smooth:Boolean = false, loop:Boolean = false, fps:Number = 24)
Creates a new
AnimationSequence object. | AnimationSequence |
fps | property |
public var fps:Number
Determines the speed of playback in frames per second.
loop | property |
public var loop:Boolean
Determines whether the animation sequence should loop.
prefix | property |
public var prefix:String
The prefix string defining frames in the sequence.
smooth | property |
public var smooth:Boolean
Determines if the animation should be smoothed (interpolated) between frames.
AnimationSequence | () | constructor |
public function AnimationSequence(prefix:String, smooth:Boolean = false, loop:Boolean = false, fps:Number = 24)
Parameters
prefix:String — The prefix string defining frames in the sequence.
|
|
smooth:Boolean (default = false ) — Determines if the animation should be smoothed (interpolated) between frames.
|
|
loop:Boolean (default = false ) — Determines whether the animation sequence should loop.
|
|
fps:Number (default = 24 ) — Determines the speed of playback in frames per second.
|