C# Класс Axiom.Animating.TransformKeyFrame

Specialised KeyFrame which stores a full transform. The members are public, but any client that assigns to a member instead of using the setter must call Changed()
Наследование: KeyFrame
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
rotation Axiom.MathLib.Quaternion
scale Vector3
translate Vector3

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

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

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

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

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

Creates a new keyframe with the specified time. Should really be created by AnimationTrack.CreateKeyFrame instead.
public TransformKeyFrame ( AnimationTrack parent, float time ) : System
parent AnimationTrack Animation track that this keyframe belongs to.
time float Time at which this keyframe begins.
Результат System

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

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

Rotation at this keyframe.
protected Quaternion,Axiom.MathLib rotation
Результат Axiom.MathLib.Quaternion

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

Scale factor at this keyframe.
protected Vector3 scale
Результат Vector3

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

Translation at this keyframe.
protected Vector3 translate
Результат Vector3