blob: 7fe49eef2b164e2f27c1db1d7ae8562a2e46b26a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "util/Log.h"
#include "Animator.h"
#include "Component.h"
#include "Sprite.h"
using namespace crepe;
Animator::Animator(game_object_id_t id, Sprite & ss, int row, int col, int col_animator)
: Component(id),
spritesheet(ss),
row(row),
col(col) {
dbg_trace();
this->spritesheet.mask.h /= col;
this->spritesheet.mask.w /= row;
this->spritesheet.mask.x = 0;
this->spritesheet.mask.y = col_animator * this->spritesheet.mask.h;
// need to do this for to get the aspect ratio for a single clipping in the spritesheet
this->spritesheet.aspect_ratio
= static_cast<double>(this->spritesheet.mask.w) / this->spritesheet.mask.h;
}
Animator::~Animator() { dbg_trace(); }
|