blob: ab61dd7782bf9a74be336777f525a9b682ec70cd (
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
27
|
#ifndef SPRITE_SHEET_ANIMATOR_H
#define SPRITE_SHEET_ANIMATOR_H
#include <raylib.h>
#include "def.h"
typedef struct AnimationPlayer {
Texture2D *sheet;
int frame_counter;
int frame_speed;
int frame_current;
Rectangle frame_rec;
float frame_width;
float frame_height;
int index_start;
int index_offset;
int index_end;
int index_increment;
} animation_player_t;
animation_player_t make_animation_player(Texture2D *texture, int row, int col, int start, int end, int inc, int offset);
void update_frame(animation_player_t *anim);
void draw_frame(animation_player_t *anim, Vector2 pos, Color tint);
void draw_frame_box(animation_player_t *anim, Vector2 pos);
#endif
|