Bbop-Library 0.4.1-alpha
Opengl library to build 2d apps and game that implement a light system named Lumop
 
Loading...
Searching...
No Matches
animatedSpriteClass.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include "spriteClass.h"
7
14class AnimatedSprite : public Sprite
15{
16public:
18 AnimatedSprite(std::string _animated_sprite_sheet, Vector2i _size, float _frame_t);
19 AnimatedSprite(std::string _animated_sprite_sheet, Vector2i _size, float _frame_t, int _dead_frame);
20
26 bool update();
27
31 std::vector<Texture>& getSpriteSheet();
32private:
33 std::vector<Texture> animated_sprite_texture;
34 long unsigned int frame_cpt; //<! compteur de frame
35 long unsigned int n_frame; //<! nombre de frame
36 float frame_t; //<! timing entre les frames
37 float total_t; //<! temps total de l'anim
38 float anim_start; //<! depart de l'anim
39 float last_frame_t; //<! timing de la dernière frame
40};
AnimatedSprite()
Definition animatedSpriteClass.cpp:9
std::vector< Texture > & getSpriteSheet()
renvoie la liste de texture
Definition animatedSpriteClass.cpp:50
bool update()
Met a jour les particules.
Definition animatedSpriteClass.cpp:31
Sprite(Texture nTexture, Vector2f nPos, Vector3i nRGB, Vector2f nOrigin, float nRotation, float nAlpha)
Definition spriteClass.cpp:16
Definition bbopMathClass.h:38