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

Oh hey, a fellow mouse cursor game! :) Super neat and creative idea! Didn't figure out how to progress past the level where the goal is in the bottom right corner of the room. Missing audio! :)

Ooh, I'll have to give your game a shot soon! I haven't seen many other projects using a mouse either. I agree audio would help a lot, between time constraints and my own lack of experience with it I decided to focus on other things. It's definitely something I want to include the next time I do a jam!

And if you want a hint for that level, try putting some momentum into your cursor before you let it go ;)

(+1)

Ohhh, thanks for that hint, I wouldn't have expected that! :D I made it! Level 10 was pretty fun, as well. Took me 99 retries overall! :P Thanks for making this!

(+1)

Also, yay for Godot! Would be curious to learn which nodes you used to design the levels!

The pointer is a bit of a mess, it's a RigidBody2d with a dynamically offset area2d for collision detection in normal cursor mode. In hindsight, I think it would be better to swap between a KinematicBody and a RigidBody when it changes modes for a number of complicated reasons, and I plan to try that out and release an updated build after the jam. As for the levels, they're pretty simple, walls are StaticBodies and just about everything else is an Area2d. Then I just used signals and AnimationPlayers to make everything work, and slapped a level graphic sprite on top!