thevideogamester 2020-10-05 03:18
Love the sound design. The about page was unexpected and funny. The lopping rooms were cool but I ended up glitching out of the map once or twice. Interesting entry to be sure.
Foon → Ludum Dare Explorer → LD47 → Monke Rehabilitation Center
| Category | Rank | Score | Count | |
|---|---|---|---|---|
| Overall | 544 | 2.92 | 23 | |
| Fun | 474 | 2.88 | 23 | |
| Innovation | 347 | 3.21 | 23 | |
| Theme | 496 | 3.09 | 23 | |
| Graphics | 567 | 2.50 | 24 | |
| Audio | 425 | 2.63 | 24 | |
| Humor | 70 | 3.63 | 24 | |
| Mood | 376 | 3.00 | 23 |
Love the sound design. The about page was unexpected and funny. The lopping rooms were cool but I ended up glitching out of the map once or twice. Interesting entry to be sure.
it crushes when I click start :(
@simone You are using the Windows version right? Do you have an old graphics card? The game does render to quite a few large textures and I'm not sure if everything I do is supported on all hardware.
@SpacialSeasoning I tried the html version.
That may be the issue.
The computer I am using is fairly new and I doubt it will have issues ;)
@simone Yes, the HTML version definitely has problems. There can be up to a second of lag on the desktop versions when starting the game, but it can take several minutes in the HTML version (where it plays awful sounds and can crash your browser the first time it loads). I suspect the main problem (for me and perhaps for you if you have a laptop) is that web browsers don't typically request to use the dedicated GPU, so they just end up using the integrated GPU and certain things take a long time to load. I removed the Web version and replaced it with other platforms.
Wow This was hard.. i am impressed by the mechanics.. especially how you implemented potals etc.. looping stairs were awesome..
Nice game!
It's totally awesome, but you do need antialiasing because text looks awful, and also I stuck in one place with walls appearing around me when I tried to move. Dunno if it's planned, but it was quite frustrating.
@harrm The "getting stuck between portals" part of my description describes the wall problem. It is basically a problem where the portal only stops you from going back through instantly, so if you walk backwards before clearing the portal on the other side and end up behind it, then you will go through again when walking forwards, which puts you in the same situation on the other side. Optimally, I would only move the player to the other side after they had completely entered the portal, but I cannot do that because of godot rendering limitations (you would see the wall behind the portal before going in), so the only reasonable godot solution is to allow this bug. The text is antialiased, the problem is that godot can't render text in 3D so it has to be rendered onto a texture every frame. Godot's limitations caused quite a few problems (mainly the portals as godot doesn't allow stencil operations, if it did, I could have fixed the getting stuck bug easier). If I develop this further, I would definitely switch to a custom engine.
Seemed interesting, however I was unable to actually play past the second area. no matter how I entered the non-euclidean pipe it just got me stuck in a teleport loop
Jeez, that's the most trippy game i played in this game jam. I think I got lucky with all the weird dimensional puzzles. For a shit-post game, this has a surprising amount of gameplay and puzzle elements. The challenge of getting the final gear (while falling through a pipe) is quite frustrating, but I got lucky and got the gear.
Elon musk meme, shitpost game :thumbsup:
A Quality Shitpost!.
Loved The Humor and Audio. The Puzzles as well.
But The Graphics and The Framerate Man... 20FPS with a lot of stutters and a lot of overlapping faces and glitches as well. What engine Are You Using? Or Did You Make It From Scratch?
I Rate It 10 Monkes Outta 7 Elongated Muskrats
@whynotyt I used Godot. It isn't exactly known for efficiency, but it is simple and works well enough for jams. I render each portal to a new screen-sized frame buffer, which takes a decent amount of bandwidth. I would expect lower performance on laptops with integrated GPUs that have to share RAM and don't do well with the scene being rendered 10+ times every frame. There is also a side problem where midway through the puzzle, Godot prints ludicrous amounts of errors from some of the decoration gears that use the script that doesn't properly handle the case where it doesn't contribute to the winning condition, making it lag on any hardware.
The stuff I am doing doesn't have to be this poorly optimized, but it does in Godot. Normally, for portals, games use stencil buffer operations. Unfortunately, Godot does not support this, so I had to use frame buffers. The movement glitches could be made better even with Godot, but there isn't much I can do for overlapping stuff and the FPS problems. If by overlapping faces, you mean the weird geometry when looking through the portals at a distance, again that is unfixable in Godot, as it does not allow custom clipping planes (portals would normally use their own plane as a custom plane to avoid rendering geometry behind them, but some walls are still visible due to the relative camera position. I did make some walls invisible to portals to help this, but it also leads to weird things where a wall suddenly appears after walking through that was removed due to problems with another portal).
Thanks for your feedback!