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

Love the graphics!

Good puzzle progression, too! The difficulty definitely ramps up, but it's not super difficult (although the invisible/yet-to-be-added block-placement graphics add an interesting challenge).

Wish the character didn't get stuck on / blocked by edges & walls so easily -- not sure how you approached the movement system, but you might be able to get away with just switching the player collider to a circle instead of a square?

I look forward to seeing how this develops!

(+1)

Thank you! yeah, i was trying to stick to "only square colliders because we are aiming for a retro style" but definitely will listen to your feedback

(+1)

Hah, that's interesting! Honestly square colliders might still be better depending on what other features/interactions you have planned (block pushing, maybe?), I just can't think of a lower-dev-cost solution to this edge thing than giving the character a circle-collider. I feel like retro games probably did rect-versus-tilemap collision math instead of using a physics system like Unity's, if you want to explore that route.  (It seem like Unity is giving every tile a square collider, then doing square-collider-versus-square-collider physics behavior here.)

If it helps, the easiest way I found to reproduce the edge-collision issues is to walk into diagonally into the top/bottom of a line of wall tiles. Keep holding the keys down to "rub" the character along the edge of the wall until you get stopped at the seam between two tiles. At this point, you can let go of the keys, then resume trying to walk horizontally in the same direction, but you'll still be blocked by the edge until you walk away from the wall.