C# Класс 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.
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
parentTrack AnimationTrack
time float

Открытые методы

Метод Описание
KeyFrame ( AnimationTrack parent, float time ) : System

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

Описание методов

KeyFrame() публичный метод

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.
Результат System

Описание свойств

parentTrack защищенное свойство

Animation track that this key frame belongs to.
protected AnimationTrack,Axiom.Animating parentTrack
Результат AnimationTrack

time защищенное свойство

Time of this keyframe.
protected float time
Результат float