diff options
Diffstat (limited to 'Source/Asura.Engine/Graphics/Animator.h')
-rw-r--r-- | Source/Asura.Engine/Graphics/Animator.h | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/Source/Asura.Engine/Graphics/Animator.h b/Source/Asura.Engine/Graphics/Animator.h deleted file mode 100644 index 4d3d269..0000000 --- a/Source/Asura.Engine/Graphics/Animator.h +++ /dev/null @@ -1,96 +0,0 @@ -#ifndef __AE_ANIMATOR_H__ -#define __AE_ANIMATOR_H__ - -#include "Component.h" -#include "Animation.h" - -namespace AsuraEngine -{ - namespace Graphics - { - - /// - /// animationҪΪanimationĴ - /// - class Animator final : public Component - { - public: - - void OnEnable() override; - void OnUpdate(uint32 milliseconds) override; - - /// - /// animation - /// - void SetAnimation(uint ID); - - /// - /// animation - /// - void SetAnimation(Animation* animation); - - /// - /// animation״̬ - /// - void SetTime(float time); - - /// - /// IJٶ - /// - void SetSpeed(float speed); - - /// - /// Ƿѭ - /// - void SetLoop(bool isloop); - - /// - /// ݹؼ֡animation - /// - void SetKeyFrame(uint keyFrame); - - /// - /// õ - /// - void SetToBegin(); - - /// - /// õʼ - /// - void SetToEnd(); - - /// - /// ͣ - /// - void Pause(); - - private: - - /// - /// ǰanimation - /// - Animation* mAnimation; - - /// - /// AnimationҪһsprite renderer - /// - SpriteRenderer* mSpriteRenderer; - - /// - /// ٶȣĬΪ1dt = mSpeed * DELTA_TIME - /// - float mSpeed; - - /// - /// ǰִеʱ - /// - float mTime; - - bool mLoop; - - }; - - } -} - -#endif
\ No newline at end of file |