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

Pretty nice game, well done! It was quite hard to understand how to complete first stage, but I managed to do that. I liked that controls and camera movement were very responsive, the only thing I think you could improve is colliders, because there are some places where you can go through walls and so on. But after all it was great game! 

Thanks! I agree some prompts to teach the player would be helpful and given more time I would have made some sort of proper tutorial. The colliders were my bane, I have some ideas on how to fix it but the way they're behaving I believe has something to do with how the player moves not the colliders themselves. I need to look into this otherwise I'll keep making the same mistake.

(1 edit)

I feel like you were moving character by adding to its position (it is like teleporting character), and that can cause problems because character can end up in wall's collider, wall collider will try to push player back making it look like you are bouncing. I suggest to use addForce or at least changing body's velocity each frame. With that player will collide with walls smoothly without bouncing.

Thanks for the tip, will definitely take a look at it, probly wont update this game here the code is a mess. But the next controller I write should be more reliable.