Staś Małolepszy Profile picture
Aug 23, 2021 49 tweets 18 min read Read on X
It's August again which means @michalbe and I are taking part in @js13kGames! This year's theme is Space.

We're joining a week late with a new idea: a 2.5D puzzle platformer on Earth abandoned by humans and reclaimed by nature. #js13k
When the theme was announced over a week ago, we spent a few hours on Saturday and Sunday brainstorming game ideas. And to be frank, we didn't like any single one of them. They just didn't seem to click.
Most of them weren't even game ideas, just plays on words that could dub as game titles, but nothing more. There was RequiesCAT in Space (probably a game about an astronaut cat), Spaciba (probably a game about cosmonauts), Space Bar (probably a game about managing an inn?)...
Then One Personal Space got stuck in our minds and wouldn't leave us alone:
Two slightly more fleshed out ideas were:

an FPS game about removing files from a hard drive,

a puzzle platformer which played in 2D but allowed the player to switch to 3D to walk around certain obstacles.
The latter seemed interesting and @michalbe quickly implemented a prototype. To justify the dimension change we came up with the idea of the game happening across 3 separate color channels, the sideways 2D view being the result of their blending. #js13k
Interestingly, that's exactly how @michalbe implemented it, too! There really were three tracks in the level, red, green, and blue, and the 2D view just turned on the blending on the GPU.
We thought this was an intriguing mechanic but it was a long way from an idea for a game. And we just didn't know how to make it into one. So we didn't. A few days passed and we were close to deciding to not do #js13k this year at all.
And then on Saturday morning I literally dreamt a scene inspired by the phrase 'to make space' or 'to make room.' It was about mankind's escape into the stars, an event that creates space for nature to thrive here on Earth.
I really liked the subtle twist: a game not about the space as the destination for humans, but instead about the space that they leave behind. A game about our home planet.
Suddenly I had the entire game in front of my eyes. I wrote down a 2-pager pitch, and sent it to @michalbe, who was immediately on board.

(We don't usually do it that way, but I wanted to practice documenting ideas in this form.) Image
And so, with a one-week delay, I say: Hello #js13k and good luck with your games everyone! I'll try to keep this thread up to date with our progress during the remaining 3 weeks.
If it's going to be a game about nature reclaiming Earth, there better be a lot of nature in it, right? Looking at photos of real places and post-apo renders, this will be a) hard, and b) crucial. Image
The plan is to use instanced rendering to draw many hundreds of leaves and grass blades with a single draw call. Here's an early WIP of procedural instanced foliage by @michalbe. #js13k Image
Also, grass. Apparently, it takes a million grass blades to make the fps go below 60. ImageImageImage
Here's a close-up of our little protagonist. The model of the body with head is ca. 4 KB (36 tris), and the tail alone is another 4 KB (30 tris), but that's before compression, so I'm not too worried about it yet. #js13k Image
It took a few tries to get the head right. Here are two previous attempts that looked like a cat and a duck. ImageImage
The model is rigged with a simple skeleton. I added skinned animations to Goodluck a few months ago and I couldn't wait to use them during this year's #js13k.
And here it is, idling among the trees. #js13k
I got the quaternions wrong when I was describing the keyframes of the walking animation, and it almost looks like it's swimming?
The walking animation, fixed. (No tail for now, stay tuned.) #js13k
Today I debugged and fixed the real-time shadows. Here's what the above video should have looked like. #js13k
The issue was in how our depth mapping system would use the model's VAO (which binds the attribute locations to data buffers) and then try to render it using its own shader program. Since the VAOs weren't created with this program in mind, the attribute locations didn't match.
Actually, they didn't match sometimes, and then other times everything worked fine. It depended on how the program was compiled; different browsers on different platforms gave different results. Debugging this was... fun :)
An update on the tail: rather than describe the movement of the rig up front, what if I could somehow bind the tail's mesh to something that knows how to move by itself? In other words, animate the tail procedurally!
My first attempt involved a particle emitter. The tail's renderer would look up the particle instances, compute their current positions in the same way the shader does it, and use them as bone positions.
With this approach there was this jittery motion when the oldest particle was removed, and the vertices bound to the last bone would suddenly jump to the second-to-last particle. This could be fixed (I think) but would require more code.
Instead, I decided to use our "mimic" system which makes an entity follow the position and the rotation of another entity. I set up a chain of bones following the fox which look like they're trailing behind it. #js13k
The last step was to modify the tail's renderer to look up those mimic entities and treat them as if they were bones in the tail's rig. Here's the result! #js13k
If you look closely, the fox's shadow doesn't animate. It's because we're currently using a separate shader for depth mapping which doesn't know how to do skinned animations. From the point of view of the source light, the fox and the tail are regular still meshes :)
Oh, I forgot to mention: we're experimenting with toon shading for the fox. I'm not yet 100% sure this is the right direction but it seems to fit the super-low-poly mesh pretty well, don't you think? Image
I added the fog effect to our shaders and the scene suddenly became mysterious and eerie. The fog will allow us to get the most out of the few props that we intend to bundle with the game. We won't have to worry about the far background. #js13k Image
Here's the mood that we're going for. #js13k Image
If you're wondering about the car model, it's made entirely out of primitives (a cube and a cylinder) in Blender, then exported to GLTF and parsed on buildtime into a file describing a hierarchy of entities. #js13k ImageImage
I was worried at first that turning the fox around in a smooth motion would be hard to implement. The solution: the player actually controls an invisible entity that rotates instantly, and the fox mesh follows it with a small lag. #js13k
It's based on the same system that makes the tail bones follow the fox—also with a small lag, which is why the tail gets longer when the fox is walking! When the fox stops, the bones take a second or two to arrive at their proper position.
Today we wrote a few scripts to automate the buildtime import from GLTF. It's fair to say that we've fully embraced GLTF in our asset pipeline. We export them from Blender and use them for our meshes, props and even levels. #js13k ImageImage
We've also added movable, rigid-body props which can be pushed and pulled. Plan for the weekend: design a few environmental puzzles and playtest them. #js13k
We're still looking for the name BTW; for now the working title has been Left Behind. We'd like the name to be about the Earth after mankind finds a new home in the stars. The intro is still a work in progress. I'm not really fond of the rocket flying off in the background.
We've doubled down on the rockets and added the starfield, too. And we now open with a short, 2-sentence-long intro text to set the stage for the game. It will probably need a better copy to hook the player. #js13k
I’ve been quiet for the last few days because we got stuck. On Friday night we finished the 3rd level and added the ending. We played through the game a few times and… we didn’t really like it. It just didn’t feel like there was a compelling story being told. #js13k
I still think our setting was interesting and original (Earth hundreds years after humans abandoned it due to the climate change), but a good setting doesn’t equal good story. We didn’t know it ourselves why we’d want the player to move right.
(Other than for the respect towards the gaming tradition, of course.)
Confession time: this was a new situation for me. Not because we were always right in the past, but because we had never finished the core gameplay 10 days before the deadline! We had never actually had time to playtest, reflect and iterate.
Instead we would finish with only a day or two to spare, and then throw the game over the fence with the perfect excuse: “We ran out of time to improve the gameplay.”
This year is different. I don’t know yet if we can get ourselves unstuck, but at least we have time to try and test a few other ideas. It feels amazing, tbh, to be able to dedicate this much time to design rather than the implementation.
The latest pivot idea we’re currently toying with: the game happens not years after people have left but right as they’re leaving. The evacuation of Earth is underway, rockets launching from everywhere. The cities are burning, there’s chaos and scare.
Your cubs run away and you have to rescue them. The new working title: “Noah,” which I guess gives away what you’ll find at the end :) #js13k
We ended up calling it ESCAPE. It's live now! Here's the release thread:

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Staś Małolepszy

Staś Małolepszy Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @stas

May 3, 2022
Two weeks ago over Easter I started working on a submission to the @Gamedevjs Jam. The theme was 'Raw,' and I wanted to create a processing pipeline simulator. This is how Super Simple Salad Simulator came to be. #gamedevjs

stas.itch.io/super-simple-s…
It's my hommage to The Incredible Machine from 1993, and also to the vegetable salad, sałatka jarzynowa in Polish. It's a springtime treat in Poland. The full list of ingredients includes potato, carrot, green pea, apple, pickled cucumber, onion, boiled egg, and mayonnaise.
When researching it for this project, I learned that the salad apparently started as a completely different recipe with many kinds of meats in it. Depending where you are, you may know it under the name of the French, the Italian, or the Russian salad. en.wikipedia.org/wiki/Olivier_s…
Read 13 tweets
Apr 10, 2022
Last weekend I made a tiny action game about being an alarm clock on wheels.

Presenting: You Are The Snooze Button.

#LDJAM #gamedev #webgl
You Are The Snooze Button can be played in all modern browsers, both desktop and mobile. It only takes a few minutes to finish it.

Play it here: piesku.itch.io/snooze
You Are The Snooze Button is a submission to Ludum Dare 50; the theme was 'Delay the inevitable.' I entered the Compo category, which meant the game had to be made solo, in less than 48 hours, and with original assets only.

ldjam.com/events/ludum-d…
Read 16 tweets
Sep 13, 2021
ESCAPE is a 2.5D puzzle platformer in 13KB of HTML and JS (zipped) by @michalbe and myself. It's a short story about wildlife and nature on Earth after mankind leaves for good. You can play it right now in the browser on desktop and mobile.

#js13k #gamedev #javascript #webgl
In ESCAPE, you solve environmental puzzles as you progress through a misty world abandoned by people. We were inspired by games like @Playdead's INSIDE and movies like @bladerunner, and we tried to convey a sense of loneliness, remorse, and confusion.

#js13k #gamedev #webgl ImageImageImage
ESCAPE fits into a 13KB Zip, but we built it using fully-featured tools. All our assets, props and scenes are built in Blender and imported into the game as GLTFs. They take up a large part of our size budget, leaving even less space for the engine code and game logic.

#js13k ImageImageImage
Read 8 tweets
Apr 15, 2021
Gamedev.js Jam 2021 is happening over the next two weeks, and @michalbe and I are making a turn-based strategy game inspired by Risk.

#gamedev #gamedevjs #gamejam #javascript Image
The jam's only restriction is that the game must be playable in a web browser. It's a refreshing change from the size-constrained jams that I typically take part in. I'm not used to not having to worry about the code and assets size.

itch.io/jam/gamedevjs-…
For the last year's Gamedev.js Jam we created an idle clicker game: Time Is Money. I wrote a short thread about it back then:
Read 36 tweets
Aug 29, 2020
I managed to get simple 3D physics working in the prototype for my WebXR game for #js13k. Best part is, I'm not using any extra libs! It's all vanilla JS, clocking in at 9 KB right now. The hand mesh alone is 3 KB so I'm sure there's plenty room for optimization, too.
More #js13k progress! I added toon shading, a few textures, and replaced the hand mesh with a paw which has fewer vertices. This is now still around 9 KB zipped!

Have you ever wanted to be a Godzilla wreaking havoc in a city?
I added rooftops to each building type and a road texture, but really, this tweet is about the fire breath.

Check out the fire breath, everyone!

Build size: 11 KB. #js13k
Read 31 tweets
Jun 20, 2020
Part 2 of this experiment starts right now! Today, I plan to implement projectile, wall and pickup collisions. I'll generate the terrain procedurally, and I'll add a simple UI.

With this set of features, I want to build an MVP version of the game: loading a map, advancing through it, killing enemies and picking up items, and finally finding the exit.
The idea behind this milestone is twofold:

1. Test and evaluate the core gameplay loop. Show it to other users and gather early feedback.

2. (If this was a compo game) Have something that can be submitted at any time, in case I can't finish the game for any reason.
Read 89 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(