diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-08 20:00:21 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-08 20:00:21 +0100 |
commit | 7817c85e84560933a33ad86ec3f9ca3d48d327d5 (patch) | |
tree | c309b9f779ca33f01d5755222a56ffca517baef4 /src/crepe/api/Animator.cpp | |
parent | 0feda3d123ff99a1b9e41837482268bebfd9140a (diff) | |
parent | ac8a58a2a16118ea4c40fcc533c3420edde45122 (diff) |
Merge branch 'niels/cleanup' of github.com:lonkaars/crepe
Diffstat (limited to 'src/crepe/api/Animator.cpp')
-rw-r--r-- | src/crepe/api/Animator.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/crepe/api/Animator.cpp b/src/crepe/api/Animator.cpp new file mode 100644 index 0000000..4b4d4be --- /dev/null +++ b/src/crepe/api/Animator.cpp @@ -0,0 +1,23 @@ + +#include <cstdint> + +#include "util/log.h" + +#include "Component.h" +#include "Sprite.h" +#include "Animator.h" + +using namespace crepe; + +Animator::Animator(uint32_t id, Sprite & ss, int row, int col, int col_animator) + : Component(id), spritesheet(ss), row(row), col(col){ + dbg_trace(); + + animator_rect = spritesheet.sprite_rect; + animator_rect.h /= col; + animator_rect.w /= row; + animator_rect.x = 0; + animator_rect.y = col_animator * animator_rect.h; + this->active = false; +} +Animator::~Animator() { dbg_trace(); } |