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

Its a nice platformer, i liked the robot design and the levels were nice.

Some easy improvements that could be made would be:

Split the robot and  the wind key, so as to animate the wind key when you wind up the robot without moving the wheels (maybe you can split "Wind key", "Robot Body" and "Robot wheels" to make the robot move up and down when you are winding it up)

Instead of Using raycast to check for ground, use Physics2D.OverlapCircle(). that way, you can give a bit of coyote time to the player (Be careful,  you have to set the walls to a diferent layer than the ground, or the player will be able to jump from them and be spiderman)

Allow the player to jump while moving

on the 3rd level (the one with falling blocks), open a hole in the wall, because i didnt know i had to go trough there

And (this one might be more difficult), Use rigidbody.AddForces()/.velocity instead of checking if there is and obstacle up and changing the robot transform to make your robot jump and not teleport.


Overall, nice Game

thanks for this awesome feedback

Though in level 3 it's sort of a secret route which you can take

I haven't hidden it well because I didn't want people climbing the whole way

Also the jump does use velocity I don't even touch the transform in the player script the jump teleports ther reason?? I don't know I have been trying to figure it out since I implemented the jump

Thanks for the feedback again

If You are using velocity, then try lowering the jump value, maybe its going to fast and that makes it appear to teleport. If the Player falls to fast because of this, or you dont like how high it jumps, you can change the gravity value inside the rigidbody of the player. If you dont want to change anything, you can simply use AddForces (Rembember that Add Forces depends of both the Mass of the RB and the Gravity, so you will have to tune them again)


And please, Check out my game,  I Have too few reviews :'c

https://itch.io/jam/brackeys-4/rate/724593

No its an entirely different problem thanks for trying to help though

Will check out your game in a few hours

also I played your game before Its a bummer there are less reviews

Good feedback! I agreed with everything FedCap said!