blob: 2c2ca65ca6b9a9d7a18ac7a7bb0bf17770172a15 (
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
|
#include <cmath>
#include "../util/Log.h"
#include "Component.h"
#include "Sprite.h"
#include "Texture.h"
using namespace std;
using namespace crepe;
Sprite::Sprite(game_object_id_t id, const Texture & image, const Color & color,
const FlipSettings & flip)
: Component(id),
color(color),
flip(flip),
sprite_image(image),
aspect_ratio(static_cast<double>(sprite_image.get_width()) / sprite_image.get_height()) {
dbg_trace();
this->sprite_rect.w = sprite_image.get_width();
this->sprite_rect.h = sprite_image.get_height();
}
Sprite::~Sprite() { dbg_trace(); }
|