C# Class Axiom.Animating.KeyFrame

A key frame in an animation sequence defined by an AnimationTrack.
This class can be used as a basis for all kinds of key frames. The unifying principle is that multiple KeyFrames define an animation sequence, with the exact state of the animation being an interpolation between these key frames.
Datei anzeigen Open project: WolfgangSt/axiom Class Usage Examples

Protected Properties

Property Type Description
parentTrack AnimationTrack
time float

Public Methods

Method Description
KeyFrame ( AnimationTrack parent, float time ) : System

Creates a new keyframe with the specified time. Should really be created by AnimationTrack.CreateKeyFrame instead.

Method Details

KeyFrame() public method

Creates a new keyframe with the specified time. Should really be created by AnimationTrack.CreateKeyFrame instead.
public KeyFrame ( AnimationTrack parent, float time ) : System
parent AnimationTrack Animation track that this keyframe belongs to.
time float Time at which this keyframe begins.
return System

Property Details

parentTrack protected_oe property

Animation track that this key frame belongs to.
protected AnimationTrack,Axiom.Animating parentTrack
return AnimationTrack

time protected_oe property

Time of this keyframe.
protected float time
return float