Great game for 7.5 hours! Congrats!
Chootin
Creator of
Recent community posts
There were some nice metaphors in the text which brought it to life! I felt though that sometimes the characters didn't really respond to a few events that happened to them, after pulling Chip back into the train for example. Inventive use of text to squeeze in a little gameplay, a few graphics wouldn't have gone astray ;)
We chose the LWRP specifically so that we could easily implement that drawing behind other objects feature for the ball and goal flags. It was a little risky as we hadn't used it before.
Also I was going to use the shader graph, but ended up having to code the shaders I needed myself to get access to some extra features.
Bloom is darn fine, I like it wherever I can get it usually. Although on this project I was more focussing on making those bright materials and textures pop as I usually struggle to get vibrant colours into my work.
In our case our main problem was where the colliders for tiles meet. The ball hits one collider and not the other and considers it as hitting a corner rather than a continuous flat wall.
Also realistic drag/friction doesn't give the player enough time to properly mess around with the traps and tilt as the ball gains too much speed. We have some code adjusting friction along manually specified curves to get around this.
Well implemented concept! It's good to see that you expanded on the initial idea in ways which fit well with how the player interacts.
Nice use of effects, shame you couldn't get them to also function in the WebGL build. I'd be interested to know which version of Unity, graphics pipeline and post processing stack you were using.
To keep the pace going, it would be nice if the shot fails, the player can quickly get themselves reset for the next one. Likewise if I succeed, I'd like to get that feedback straight away.
Wow cheers for the detailed feedback.
I can confirm that all the art assets were made specifically for this jam. We had Oscar doing the 2D drawings and I was handling the 3D assets with my typical workflow from Blender through Substance Painter and into Unity with the occasional custom shaders.
We certainly did have some issues getting Unity's current physics engine to cooperate with what we needed to make the game fun to play. We used a few neat tricks and compromises to get it to where we thought hitting the ball around was pretty entertaining.
Great to see you participate!
To improve the design of the game, I would recommend a few things:
- It would be helpful if there was some way to know about obstacles on the other side before switching gravity - either zooming the camera out or seeing little object previews
- If you want to have randomized layouts, it's very important to be certain that the layout is possible to navigate. In this case we can work out the angle the player will travel when gravity is switched and then form an optimal path around that
- Adding a score system, such as counting the number of objects you pass or distance travelled, or time spent. This way players can compare their skills with each other
- As a larger change, it would give you a lot more possibilities with layout if players were able to switch gravity again before they land
Good work on getting it running smoothly and bug free :).