On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I gotta be honest, I absolutely love this game, I managed to get my crown back to the castle aha

It's just so satisfying collecting all the lil guys and the fact you can pick them back up makes this game not stressful. This is such a polished and fun entry, well done!

Can I ask how you got the sprites to do a little bounce animation when moving? I tried that with my chickens but they all got locked to one position and couldn't move

Thanks for the feedback!

About that issue, I guess you were trying to animate the chicken game object itself. That overrides any other position change you perform by code. To do this, the sprite must be in a child of the main chicken gameobject, and animate that child. Then you apply the movement to the parent gameobject. This way, the animation does not changes the position of the main chicken gameobject, but just its child with the sprite, and you can move it freely :)

That makes so much sense aha, thank you! Don't know why I didn't think of that before