diff options
author | chai <chaifix@163.com> | 2018-11-16 00:24:51 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-11-16 00:24:51 +0800 |
commit | 831e814ce9bdb84e86c06c4a52008f6bdaaa00d6 (patch) | |
tree | f91fccc7d2628d6e0a39886134b2bb174f5eede4 /src/libjin/Graphics/animations/je_animation.h | |
parent | 6dc75930fe5fe02f1af5489917752d315cf9e48f (diff) |
*合并master到minimal分支
Diffstat (limited to 'src/libjin/Graphics/animations/je_animation.h')
-rw-r--r-- | src/libjin/Graphics/animations/je_animation.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/libjin/Graphics/animations/je_animation.h b/src/libjin/Graphics/animations/je_animation.h new file mode 100644 index 0000000..9926cf9 --- /dev/null +++ b/src/libjin/Graphics/animations/je_animation.h @@ -0,0 +1,64 @@ +#ifndef __JE_ANIMATION_H__ +#define __JE_ANIMATION_H__ + +#include <vector> +#include <string> + +#include "../je_sprite.h" + +namespace JinEngine +{ + namespace Graphics + { + namespace Animations + { + + /// + /// Animation clip with key. + /// + class Animation + { + public: + void update(float dt); + + void start(); + void pause(); + void stop(); + void rewind(); + void setSpeed(float speed); + + /// + /// Get current frame index. + /// + uint getCurrentFrameIndex(); + + /// + /// + /// + Sprite* getCurrentFrame(); + + /// + /// Set current frame index. + /// + /// @param frame Current frame to play. + /// + void setCurrentFrame(uint frame); + + private: + /// + /// Key frames. + /// + std::vector<Sprite*> mFrames; + + /// + /// Animation playing speed. + /// + float mSpeed; + + }; + + } // namespace Animations + } // namespace Graphics +} // namespace JinEngine + +#endif
\ No newline at end of file |