New Graphics
Create new animation
you can add your own models to projectiles, players, enemies, bosses and backgrounds. Using png format
1. Add your png spritesheets to the resources folder
Add their path from directory root underneath cmrc_add_resource_library(
only the client needs those resources, so only add it inside function(build_client)
Always recompile after changing the resource files since cmrc loads them into the executable
2. Create new Animation::AnimationID enum
Always add your new enum at the end of the list to not change values
3. Add a new instance of Animation::Sheet
Go to the
std::map<> sheets
in src/shared/ECS/components.hppAdd your new
Animation::AnimationID
enum and an instance of theSheet
struct
the Sheet is defined as:
std::string path
= path to .png file in resources folder
float startX, startY
= x and y position of the upper left pixel from first frame
float frameWidth, frameHeight
= width and height of single frame in sprite sheet
int animWidth, animHeight
= number of horizonal and vertical frames in sprite sheet
int separationX, separationY
= pixels between two frames in sprite sheet
bool reverse
= if true doesnt repeat the animation at the end but reverses it
double interval
= seconds between two frames of animation
bool tile
= only for backgrounds to infinitely repeat
Last updated