OGRE 14.3
Object-Oriented Graphics Rendering Engine
|
Specialised KeyFrame which stores a full transform. More...
#include <OgreKeyFrame.h>
Public Member Functions | |
TransformKeyFrame (const AnimationTrack *parent, Real time) | |
Default constructor, you should not call this but use AnimationTrack::createKeyFrame instead. | |
~TransformKeyFrame () | |
KeyFrame * | _clone (AnimationTrack *newParent) const override |
Clone a keyframe (internal use only) | |
virtual const Quaternion & | getRotation (void) const |
Gets the rotation applied by this keyframe. | |
virtual const Vector3 & | getScale (void) const |
Gets the scaling factor applied by this keyframe. | |
const Vector3 & | getTranslate (void) const |
Gets the translation applied by this keyframe. | |
virtual void | setRotation (const Quaternion &rot) |
Sets the rotation applied by this keyframe. | |
virtual void | setScale (const Vector3 &scale) |
Sets the scaling factor applied by this keyframe to the animable object at it's time index. | |
virtual void | setTranslate (const Vector3 &trans) |
Sets the translation associated with this keyframe. | |
Public Member Functions inherited from Ogre::KeyFrame | |
KeyFrame (const AnimationTrack *parent, Real time) | |
Default constructor, you should not call this but use AnimationTrack::createKeyFrame instead. | |
virtual | ~KeyFrame () |
Real | getTime (void) const |
Gets the time of this keyframe in the animation sequence. | |
Specialised KeyFrame which stores a full transform.
Ogre::TransformKeyFrame::TransformKeyFrame | ( | const AnimationTrack * | parent, |
Real | time | ||
) |
Default constructor, you should not call this but use AnimationTrack::createKeyFrame instead.
|
inline |
Sets the translation associated with this keyframe.
The translation factor affects how much the keyframe translates (moves) it's animable object at it's time index.
trans | The vector to translate by |
Gets the translation applied by this keyframe.
Sets the scaling factor applied by this keyframe to the animable object at it's time index.
scale | The vector to scale by (beware of supplying zero values for any component of this vector, it will scale the object to zero dimensions) |
Gets the scaling factor applied by this keyframe.
|
virtual |
Sets the rotation applied by this keyframe.
rot | The rotation applied; use Quaternion methods to convert from angle/axis or Matrix3 if you don't like using Quaternions directly. |
|
virtual |
Gets the rotation applied by this keyframe.
|
overridevirtual |
Clone a keyframe (internal use only)
Reimplemented from Ogre::KeyFrame.