Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

This looks amazing! I'm also developing in raylib, and I'd love to ask how you did the intro animations! Is there a tutorial for that somewhere?!

Thanks! The splash screen animations use a simple state machine very similar to this Raylib example, only my 'frameCounter' is actually a float that counts up at a constant rate scaled by deltaTime eg.

deltaTime = GetFrameTime()
framesCounter += deltaTime * 60