40 comments

[ 3.2 ms ] story [ 84.4 ms ] thread
Good game, but unfortunately I was able to get stuck on an edge. Player's upper left edge caught on wall's lower right corner. Perhaps the problem is in the collision checking: https://github.com/phoboslab/underrun/blob/master/source/ent...

If there's a collision in either X or Z, both should be rolled back to their last positions. I think there is possibly an edge case hidden in there otherwise.

P.S. Nice code by the way.

> I was able to get stuck on an edge. Player's upper left edge caught on wall's lower right corner

Same here.

Should be fixed with https://github.com/phoboslab/underrun/commit/2477c5a45f5be4d...

Rolling back X and Z when any collision occurs would prevent you from "hugging" (i.e. sliding along) walls. The problem was that a near corner collision wasn't correctly detected when the player didn't collide in X direction in the last frame (last_x) but does collide in the current frame (t.x), allowing the player to move into the corner in Y direction.

Thanks!

Amazing work.. Love the lightsource following the projectile. Was the large pixels a compromize to keep the fps up? Anyway, amazing what you can do with 13k!
Nice Game & Code. Keep the great work up
Nice :)

But I kinda hate you right now, because now you inspired me to develop games in 3D again, just when I'm in the making of 2D pixel-game ;)

(Love the retro-3D feeling, very good work!)

Reminds me of 64k shooter kkreiger: https://en.wikipedia.org/wiki/.kkrieger

This one is a hybrid with some predefined (tiny!) assets and some procedural generation (instruments, texture placement).

kkreiger was by Farbrausch who make some of the most incredible demos out there eg Quantum Mysterium from last year - https://www.youtube.com/watch?v=DAyQeX8a-Bw - that's done in 48Kb of code.
A recent 8 kB intro "One Of Those Days" by Loonies is pretty funny and impressive: https://www.youtube.com/watch?v=fp0t2jCMGZE
Woah. Not seen that before. That's brilliant.
(comment deleted)
Incredible casual game in 13k, fun to play, looks lovely, challenging enough and runs smoothly on 4k full screen.

Congrats.

I wish for non qwerty support. Otherwise its genius
Love it, the audio is great.
Also from the same year of the contest, Wander[0] is a 3D explorable world complete with grappling hook and save points!

[0] https://js13kgames.com/entries/wander

wander is awesome - i spent over an hour playing this great game... very nice!
>>> The game never needs to rotate any geometry

Fixed geometry was the first thing I noticed ;)

Could probably even increase level size manyfold and would still run quite smoothly. For large generated mazes. With this phenomenal skin-crawling sound design. Would make a very immersive "escape" labyrinth game!

Very cool. Has a guantlet vibe
Awesome to see the stupid trick to abbreviate object properties that I came up with in 2010 [1] is still a living part of the mini JS demo scene.

[1]: http://marijnhaverbeke.nl/js1k/

> the stupid trick

Funny how "stupid" can be interpreted in multiple ways here. One entirely appropriate, the other very much not so. I certainly am not smart enough come up with a trick like that!

don't sell yourself short stranger
(comment deleted)
Thanks for the article! Very interesting read. All of these challenges make me want to try something myself.
Great idea! I will definitely be using that trick for my next js1k attempt. I have previously defined shorter names but had to write out the original name once.
This is amazing, both in process and in result. Very well done, and a pleasant reminder that great things can come in small filesizes.
Really good writing style. So much info in such short, simple sentences.
I love the idea of low resolution of "virtual screen", moreover it's reduced to 256 colors! It allows to use low-resolution textures, simple cubes and "billboard" sprites. I think this idea can be useful not only in demoscene, but in commercial indie games too. Usually indie developers avoid 3D altogether, not because of complexity of 3d engines, but because of complexity of 3d assets. With low-res "screen" you can hand-draw small textures, use sprites instead of 3d models, use rough 3d models and so on, so you can build a game without having large team of artists.
Games seeking this property of low-cost art through pixelated graphics generally choose not to have a retro virtual screen though - which frees them to have different pixel sizes between different parts of the UI, place things precisely (even sub-actual-pixel positions!). I'd prefer they didn't do those things, but I'd also rather have these games get made than not get made.
Wow this is one of the cooler projects I have seen for that little amount of code.
Hmm.. Seems to freeze on Chrome for me after the click to initiate deployment, and the console shows a javascript error.