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

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