Maybe I would have had a better time if I played it multiplayer, but it felt more like mini-golf taking strokes than it did racing to me. I like the idea of racing with a ball by using power shots around the track, but needing to wait for the ball to stop rolling slowed down the pace too much for me.
Play game
Pitch Ball Racer's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Innovation | #42 | 3.111 | 3.111 |
Overall | #67 | 3.111 | 3.111 |
Gameplay | #68 | 2.889 | 2.889 |
Graphics | #85 | 2.944 | 2.944 |
Theme interpretation | #106 | 2.611 | 2.611 |
Audio | #142 | 1.444 | 1.444 |
Ranked from 18 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
GitHub repository
https://github.com/kakoeimon/Pitch-Ball-Racer
Comments
I liked!
Just one thing: I was playing, and after apply a force on the ball it got stuck on the rail and the game froze.
Anyway, good job! ;)
I am using Godot and I am using apply_impulse ( I used apply_force too but I didn't like the results).
The problem with physics engines in general is that they move the objects in the physics step and then apply forces to separate the overlapping objects (collision reaction). This way if an object is moving too fast there is a possibility to pass through an object or stuck inside. The solution to this is to make more steps for the fast moving objects. Godot have this but the physics engine is locked with the frame rate, this means that if you loose a frame the crucial moment then you may have a problem like this.
This is how I remember things worked for Bullet at least, cause I have read some of the presentations and techniques back in the days of the first versions. I also remember similar things about the first presentations of Box2D. Godot's physics engines are like striped down versions of Bullet for 3D and Box2D for 2D.
I Unity I do not know what they used, but I remember that they had good reaction for fast moving objects.
Leave a comment
Log in with itch.io to leave a comment.