I created this game for Dani's Game Jam. Apologies for not making too many levels—I had school keeping me busy! A huge thanks to Tofeecraft for the button. Beware of a small bug—if you double-click very quickly in front of a wall, you might get stuck. To help with this, I've added a reset button. Press R to restart the level if it happens.

StatusReleased
PlatformsHTML5
AuthorFranCode
GenrePuzzle
Made withGodot
TagsNo AI

Comments

Log in with itch.io to leave a comment.

Show post...

I'm really looking forward to playing this one! Sounds like a fun challenge with some unique elements and bonus features.

You look like the type of person who'd enjoy this jam: WOW JAM

They have a very interesting platform and are even offering prizes xD

I really like the style, enjoyed the game, but got stack on the wall few times. great work :)

(+1)

i couldent find a way to fix the bug im sory

Based on how the ball moves and that you're using godot, I'm guessing that you're directly manipulating the balls position instead of using velocity? You could try changing the movement code to something similar to this:
velocity = (global_position - target.global_position).normalized() * delta * speed
This should also let the ball interact with the environment more interestingly, with it for example being able to bounce. Hope this helps. Cheers!

i used path 2d i wasnt thinking but thank you for the advice for next time

thank you for the compliments, it help out a ton

Np, keep Up the good work!