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.
Afficher le fichier Open project: WolfgangSt/axiom Class Usage Examples

Protected Properties

Свойство Type Description
parentTrack AnimationTrack
time float

Méthodes publiques

Méthode 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 méthode

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.
Résultat System

Property Details

parentTrack protected_oe property

Animation track that this key frame belongs to.
protected AnimationTrack,Axiom.Animating parentTrack
Résultat AnimationTrack

time protected_oe property

Time of this keyframe.
protected float time
Résultat float