Play game
My S̶a̶n̶d̶ WaterBox's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Innovation | #3 | 3.834 | 4.200 |
Polish | #14 | 3.012 | 3.300 |
Theme | #19 | 3.469 | 3.800 |
Artistry | #22 | 2.647 | 2.900 |
Overall | #22 | 2.958 | 3.240 |
Challenge | #25 | 1.826 | 2.000 |
Ranked from 10 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
Leave a comment
Log in with itch.io to leave a comment.
Comments
Really fun physics👏 The water looks cool with the black outline. Cool game!
Hey, Glad you liked it!
I like the feel of the water, and the physics simulation is fun too, although a bit limited. I wish we had control over line width or color, but I'm being nit-picky. Overall very fun to play around with :)
Thanks for your feedback! I had a lot more things to implement, but unfortunately I haven't the time to do it.
I know the feeling .. T-T
Hi! I played your game on stream on the Pygame Community Youtube channel. If you weren't in the stream, and wanted to check out my playthrough and opinions, there are timestamps in the description. Apologies for any audio cutting issues.
Cool physics sim
Thanks! ☺
The physics of water is very satisfactory
Glad you enjoyed!
Found the button that reverse the gravity direction! I didn't know what metaballs where before your game, thanks! For the rest, I assume you used pymunk? Great game, really polished!
Hey, I'm really glad you liked!!! 😊
Yes, I did used pymunk Much more was in my plans, but learning shaders taked a lot of my time haha
This is actually pretty cool! I am interested in knowing further how you did it. A small overview explanation should do. The physics is handled by pymunk, but how do the water droplets “merge”? Also, you should try linking the source code in the page, it is mentioned in the rules. Overall, pretty amazing game!
Thanks for the feedback!
What I use to merge the water particles is an algorithm called metaballs, in short you go through all the pixels on the screen and sum the distance between the particles and that pixel. If the sum value is high enough then the pixel is rendered as water.
I completely forgot the source code, if you want to check it out: https://github.com/GuilOliveira/MyWaterBox
Oh wonderful! Thanks for the detailed description of metaballs :)
Yes, this is definitely water! I like how water drops weilds together, looks cool. Do you use some shaders magic?
Hey, I'm glad you liked! Yes, I did used shaders, if you want to know more abot this water magic, its called metaballs :)