Castor3D 0.16.0
Multiplatform 3D engine
|
#include <SceneNodeAnimation.hpp>
Public Member Functions | |
C3D_API | SceneNodeAnimation (SceneNodeAnimation &&rhs) noexcept=default |
C3D_API SceneNodeAnimation & | operator= (SceneNodeAnimation &&rhs) noexcept=delete |
C3D_API | SceneNodeAnimation (SceneNodeAnimation const &rhs)=delete |
C3D_API SceneNodeAnimation & | operator= (SceneNodeAnimation const &rhs)=delete |
C3D_API | ~SceneNodeAnimation () noexcept override=default |
C3D_API | SceneNodeAnimation (SceneNode &node, castor::String const &name=castor::cuEmptyString) |
Constructor. | |
Public Member Functions inherited from castor3d::AnimationT< Engine > | |
AnimationT (Engine &handler, AnimationType type, AnimableT< Engine > &animable, castor::String const &name=castor::cuEmptyString) | |
Constructor. | |
AnimationT (Engine &handler, AnimationType type, castor::String const &name=castor::cuEmptyString) | |
Constructor. | |
void | addKeyFrame (AnimationKeyFrameUPtr keyFrame) |
Adds a keyframe to the animation. | |
AnimationKeyFrameArray::iterator | find (castor::Milliseconds const &time) |
Finds a keyframe given a time index. | |
void | findKeyFrame (castor::Milliseconds const &time, AnimationKeyFrameArray::iterator &prv, AnimationKeyFrameArray::iterator &cur) const |
Finds a keyframe given a time index. | |
void | updateLength () |
Updates the animation length. | |
bool | isEmpty () const |
size_t | size () const |
AnimationKeyFrameArray::const_iterator | begin () const |
AnimationKeyFrameArray::iterator | begin () |
AnimationKeyFrameArray::const_iterator | end () const |
AnimationKeyFrameArray::iterator | end () |
AnimationType | getType () const |
castor::Milliseconds const & | getLength () const |
AnimableT< Engine > * | getAnimable () const |
C3D_API | AnimationT (AnimationT &&rhs) noexcept=default |
C3D_API | AnimationT (AnimationT const &rhs)=delete |
C3D_API AnimationT & | operator= (AnimationT &&rhs) noexcept=delete |
C3D_API AnimationT & | operator= (AnimationT const &rhs)=delete |
virtual C3D_API | ~AnimationT () noexcept=default |
Public Member Functions inherited from castor::NamedBaseT< T > | |
NamedBaseT (T name) noexcept | |
Constructor. | |
T const & | getName () const noexcept |
Retrieves the name. | |
void | rename (T name) noexcept |
Public Member Functions inherited from castor::OwnedBy< Owner > | |
Owner * | getOwner () const |
Friends | |
class | BinaryWriter< SceneNodeAnimation > |
class | BinaryParser< SceneNodeAnimation > |
class | SceneNodeAnimationInstance |
Additional Inherited Members | |
Protected Member Functions inherited from castor::OwnedBy< Owner > | |
OwnedBy (Owner &owner) | |
Constructor. | |
Protected Attributes inherited from castor3d::AnimationT< Engine > | |
AnimableT< Engine > * | m_animable |
AnimationType | m_type |
castor::Milliseconds | m_length |
AnimationKeyFrameArray | m_keyframes |
Protected Attributes inherited from castor::NamedBaseT< T > | |
T | m_name |
|
defaultnoexcept |
|
delete |
|
overridedefaultnoexcept |
|
explicit |
Constructor.
[in] | node | The parent animable object. |
[in] | name | The name of the animation. |
|
deletenoexcept |
|
delete |
|
friend |
|
friend |
|
friend |