Neat idea. The browser version didn’t quite work as the camera went haywire when moving the mouse but the desktop version ran flawlessly. Even managed to get all three objectives into a single photo, which was a fun challenge.
NekuSoul
Creator of
Recent community posts
Overall, the game is very neat and already has a solid amount of polish to it. Love all the small details like the lights to show the magnetic radius and colour coding. The way the magnet snaps to objects also feels very juicy already.
With that said, onto the nitpicks:
- The first panel in the throwing tutorial could be a bit more obvious. Didn’t realize that LT needed to be held down.
- Alternatively, it would feel more natural to me if tapping X would drop the magnet, whereas holding X would start the aim and depressing would start the throw. (Probably because I always played Yoshis Island in the fast throw mode.)
- The one-way platforms feel somehow clunky. I’m not a 100% sure on why exactly, but every time I had to climb those under time pressures it didn’t feel good climbing them.
- On the technical side, it feels like the parallax background isn’t updating at the correct framerate on a high refresh rate monitor. This makes the scrolling feel a bit nauseating and juddery.
Lastly, one thought about the level design: The best levels are those that only work because of the magnet physics of the magnet itself. The one where you need to place a magnet along the path of a magnetic block so it attaches itself for example. On the other hand, the levels where the magnet basically acts like a glorified crate, mostly in the beginning, aren’t nearly as interesting.
(Played on Windows V1.2)
Thanks for the feedback.
I've actually thought about adding a solver that simply brute forces the solution by going through all the variations, but then I realized that there are 1606 octodecillion (4^100) possible combinations for a 10x10 maze, which I think is a "bit" much.
With a proper algorithm that solves the maze in a non-stupid way by discarding all variations that aren't solveable in the first place this is probably doable though. Might be a fun coding challenge when I have some spare time.
Really cool concept for a party game that could actually work really well at an actual party with the arguments and quotes printed on cards.
Personally, I already love arguing why X is better than Y with stupid arguments and do it all the time, so gamifying that with the added rule to include a specifc quote only makes it better.
Pretty well made short game, even if a little rough around the edges as the description already says. Nevertheless, here's some feedback for each area:
Gameplay: Most importantly the controls work well. Moving, jumping or shooting feel like they should and haven't failed me once.
As for the actual challenge, I actually picked up on the theme very fast on my first playthrough I took the challenges as a test and didn't defeat any enemies, stopped using my ground pound after I got told not to use it and so on, thinking that would lead to some sort of "good" ending. On my second run I experimented a bit more and noticed that I actually couldn't use the abilities any more.
Graphics: As described, rough around the edges. But still, the main character art looks nice and a lot of effort went into making the parallax background which really helps making the otherwise simple level design look good.
Sound: The music itself is really good, which makes it a shame that the audio quality in the third part seems subpar. I'm no audio professional, so I don't know exactly what went wrong, but maybe the output volume is simply to loud, crushing the audio?
Very cool idea that I've never seen done before. Works really well.
One thing I have to mention though is that there's a bug when using a high refresh rate monitor that causes your player to shrink super slowly or not at all.
To solve this you should always multiply things by Time.deltaTime in your Update() method, or more precisely Time.deltaTime *60 if you want to keep 60 FPS as your reference speed.