Welcome back for another update, Sleepyheads! Can you believe weāre closing out August already?! š± Thatās just about it for the summer, but Iām still enjoying the weather and not quite ready for it to be over. I had a productive August though, and got plenty of work done, and in addition to showing some of that off, I wanted to do another fun deep dive into a specific topic. So without further ado, letās get into it:
For this monthās update, I thought Iād show off the making of process in more detail. As many of you reading probably already know, despite having some very important people helping with the game, Little Nemo is mostly a solo developed title. So I want to show you what my process looks like by diving into the full end-to-end process of just a small piece of the game: developing a single new enemy. I think this will give you a good sense of how many different hats you have to wear as a solo developer for the production side of things alone, while also trying to highlight how I get help when I can.
A photo I took during the Kickstarter of me working in my office/studio
Iāll start by showing off the enemy weāre gonna be discussing, the Helmlet:
The Helmet patrolling in the test environment
This is a very simple enemy that just walks back and forth and is armored from the front. It shares a color scheme with the Burrchin and Slowpoke enemies because, like them, it is designed to go in any domain. Now that you know what weāre aiming for, letās back up and start at the beginning of this whole process.
The inception for this enemy comes from two areas. The first is that while working on level design with Rygar (who helps out a bit with boss and level design), the Raddler was identified as an enemy that is nice to place anywhere. Its simple walk-back-and-forth behavior makes it a nice and easy enemy to slot in anywhere. The Raddler was designed as an enemy for the Dreamswept Plains, and so I didnāt love putting it into other domains, but it didnāt necessarily clash, so we just started using it throughout Slumberland.
Then more recently, I was playing some Mega Man 4 and I noticed that the Shield Attacker enemies are quite fun. They are a simple back-and-forth enemy, but with the twist of being armored from the front. Even though we liked the simplicity of the Raddler, I thought we could afford to add just a bit of complexity since we already have the very simple Burrchin and Slowpoke to use for āeasyā enemies.
So now we had an enemy in mind: one that simply patrols back and forth, but is armored when attacked from the front, it damages you if you touch it, and should visually fit in with Burrchin and Slowpoke. Alright, so letās make it!
Next up I need to come up with a visual concept for this enemy. This is somewhere that I might enlist JoĆ£oās help to come up with a visual concept, but in this case, I was confident in my ability to come up with something appropriate, so I worked on the visual design myself.
As I mentioned before, the Burrchin and Slowpoke are some of our other āgenericā enemies designed for use in any domain. Their general visual motif is ācute but dangerous plushieā.
The Burrchin and Slowpoke are enemies youāll find throughout Slumberland
So we want something like this, but it needs some kind of shielding in the front. Okay, what if itās a mask, kind of like Mario 2ās Shy Guy or Kirbyās MetaKnight?
The Shy Guy from Mario 2 has a mask that could provide some armor perhaps?
Thatās a good idea, but a mask doesnāt necessarily look āshieldedā enough, so weāll just need to accentuate the mask a bit more and make it a little more shield-like. Iām thinking it should probably look more like a tower shield.
Additionally, since this enemy damages you on touch, weād like it to have some spikes to make sure thatās immediately clear to players and they donāt think you can step on this enemy to pick it up. Luckily I have the time-lapse available for the ideation of this enemy, so you can see all the various visual ideas I tried out before I found the one I really liked:
Me scribbling down different ideas until I found something I was happy with
So that leaves us with a design that looks something like this:
The initial sketch that I was happy with for Helmlet
Itās around this time that I also start coming up with a name for the enemy. Iām generally aiming for something cute, fun, and which includes some kind of pun or reference to the enemyās function or inspiration. I settled on āHelmletā as the helmet part of the name communicates the enemyās armor, and the ā-letā part of the name helps make it sound like a small and cute name.
So there we have it. Okay on to the next step!
This step is actually quite a bit slower and more work-intensive than you might realize, so Iām gonna break it down quite a bit. For this step, Iām primarily working on my iPad and an Apple Pencil, before bringing everything back to the PC to get imported into the Unity project.
Sub-step 1: Finding the motion
First we need to sketch out the motion for our walk cycle. Luckily in this case, we only have to worry about the walk cycle, and a frame or two for turning around. Iāll often start these out by just drawing in the keyframes I want to hit, so Iāll have a choppy version of the animation to get the general idea of what Iām after.
Just a few keyframes to convey Helmetās waddle
Sub-step 2: Tweening and Inking
After Iāve identified the keyframes for an animation I think will look good, I render the rest of the details. The first step to that is tweening the animation with a target typically of 15fps (weāll use 30fps as needed if itās something that needs more motion detail or clarity and moves quickly, or go down to 10 or even 7.5fps for animations that have very little motion. And we also make sure this is all at the target resolution (typically 256 pixels per unit, with standard enemy size being roughly 1x1 units).
All of the inked drawings for Helmletās walk cycle
Youāre probably thinking, why would you draw this 14 separate times? That seems like overkill, especially since most frames are so similar, and youād be right. But something I strive for with Little Nemo is making sure not only that it is hand-drawn, but that it feels hand-drawn. And getting the feel involves re-drawing the sprite so you get those subtle differences in each frame that cause a so-called āboilā in the animation and help the animated elements in the game really pop and come alive. The minor details such as the texture of the inking come through really nicely when the game is running at 4K resolution.
All 14 inked sprites in sequence
Sub-step 3: Shading, details, and coloring
Now for all of the details that go into each frame. I probably donāt need to talk too much about these, so Iāll just share a timelapse of each step being added to the sprite sheet.
A time-lapse of how the sprite sheet looks as we add details from each step
The way the colors cover up all of the details probably seems kind of weird, but thatās because weāre making two different textures that are combined using a shader so that we can dynamically re-color the sprites. This is all just custom rendering tech Iāve developed for the game, and if you wanna learn more about it, I wrote it up in detail way back during the gameās Kickstarter campaign in this post here: Little Nemo Art Pipeline.
And again, weāve selected a simple example here, so the only other animation we have is a two-frame turnaround animation, but we will also do this step for any other animations the enemy needs.
Next up, weāll export the drawings from Procreate as PSDs (Photoshopās file format). I recently set up a local NAS server (essentially an in-home cloud solution) for DIE SOFT, which helps make this process faster and easier than using google drive since itās all over local network instead of over the internet (these PSDs can sometimes get quite large). So these PSDs go onto the NAS and then I can access them from my PC. I use Photoshop to export sprite sheets for the animations, and then import them into Unity and get them sliced up into individual sprites.
Slicing up the sprite sheet in Unity
I could have just not mentioned this step because it seems self-evident that this would need to happen, but itās worth calling it out because even with the various automation steps involved to make this relatively fast and easy, these are the sorts of tasks that can easily eat up loads of time unexpectedly when youāre doing even the most simple tasks yourself.
Now that weāve got the sprites in there, we need to get them moving around on screen and behaving as expected. Since weāve got a simple case, this step once again is very simple. The enemy AI is not a particularly strong part of my Nemo codebase, but it is robust enough that I can easily build out an enemy like this. In fact, I already have an enemy archetype for it I call āSimple Patrolā which adds the MoveForward, TurnaroundAtWall, TurnaroundAtHazard, and TurnaroundAtLedge traits, which is all this needs to do what we want it to.
So weāll create a prefab for it which is a variant of our standard enemy base, we add the SimplePatrol behaviour, add an ArmorBox to it (so it can block hits from the front), add a hitbox to it (so that it hurts us if we touch it), and then fiddle with all the parameters such as its walk speed until weāre happy with it.
Hereās the Helmletās prefab. Lots of components, but many of them are from the base enemy prefab
Even with this simplest of enemy types, this step manages to take a good amount of time. Thereās often a lot more fiddling than I anticipate going in. For instance, with this enemy, I needed to fiddle with my armor logic because even if you hit the enemy from behind, if your weapon overlapped the armorbox, the attack would get blocked.
We have a functional prefab for the enemy at this point, and if Little Nemo were built using Unity scenes, we would just be placing the prefab directly into scenes. But Slumberland is built out of Rooms encoded into JSON files and authored using the Nemo Maker tool Iāve built. If you wanna see a little more about this, I talked about it in an earlier Kickstarter update. But that means I have one last abstraction step: bring this prefab into Nemo Maker so I can place it into the world.
This involves just making a prefab swatch, and putting it into the appropriate palette (in this case the shared palette since this can be used in any domain).
Helmletās Nemo Maker swatch
Much like the importing of the sprites into Unity, this is the sort of task I could ignore while sharing my process, but I think that would be doing you a disservice in terms of trying to show you what actually happens here. Also this is also one of those menial tasks that quickly adds up.
This enemy doesnāt need any custom sound effects, but if it did, those needs would get jotted down into a doc where Iām tracking sound effects for Jonathan Baken to work on when he does his next pass on SFX for the game. Thereās a whole process for getting those imported and utilized in the game that looks a bit like what we looked at here and definitely takes a bit of time. If anyone is interested, I could do a similar look at that process next.
This enemy also doesnāt really have any narrative implications. If it did, I would probably try to chat with Cid about it during the design phase to make sure it fits into Slumberlandās narrative appropriately.
And of course this enemy doesnāt have any musical requirements, so Peter Berkmanās contributions to the gameās soundtrack arenāt relevant to what Iāve walked you through here.
I just wanted to get this step in to point out where other contributors are typically involved in the process even though they werenāt in this particular example.
So now weāve got this new enemy, available to use in Nemo Maker and you got to follow along for the whole process.
Using Nemo Maker to place the newly made Helmlet into the world to test it out
Please leave some comments down below and let me know what you thought of all of this and what youād like to see for next monthās developer update! But now, letās dig into some of the stuff I worked on this month that I can share with you all.
Most of this month I was working on the gameās final boss, and thatās something I want to keep under wraps until you play the game yourself, but I also worked on some other stuff that will be fun to share.
These are nothing too spoilery here, but you can see some domains and a Little Buddy below, so if youāre avoiding all the details, look away for a bit until I give the all clear.
JoĆ£o recently finished up some small drawings to represent each domain on the map screen, so I wrapped up work on the world map. This is a ālayerā of the map that shows up if you zoom far enough out on the map screen (or press the b button).
When zooming out from the room-view of the map, youāll see the entire domains and can select them to see their name as well as how many Blue Moons youāve found in that domain
This layer of the map screen is mostly just for fun and flavor, but it does serve a few purposes:
This one was nice to wrap up since itās crucial for the fast travel system to work correctly. Now it just needs:
These final additions are relatively simple, so Iāll probably sneak them in soon.
This Little Buddy I had actually never finished implementing until just this month. Iāve had the sprites finished up for a bit, but needed to do some scripting to get set up with a new style of Little Buddy. This ghost doesnāt use the normal pathfinding logic and is much simpler since it just follows directly behind Nemo, but it does need to find enemies to target and zoom over to them. Then I also had to do a decent chunk of work to make sure all of the enemies could be scared.
Polter-Pal helping out Nemo by scaring nearby enemies
Overall, Iām really happy with how this Buddy turned out. I think itās very helpful, without feeling like itās so good as to be the only one you should use. My Alien Monster, for comparison, has to be carried to help out, but he can even eat projectiles and some other hazards, so you might actually prefer to use him instead if you want help dealing with the threats of Slumberland.
Since weāre getting so close to finishing up the game, Iām also turning my attention to some of the smaller details I had been putting off. One of these is the game ending/credits. There are few different elements of the endings for both Mario 2 and Mario 3 on the NES, and one that I think would be great for our game is the āworlds showcaseā you get at the end of Mario 3.
Mario 3ās end-of-game tour of the various worlds found in the game
I love how this lets you take some time after youāve finished and just chill and appreciate the worlds you just played through with a quick recap. I was wondering if I could do something like that and just spent a little time toying with creating a little ādioramaā for a specific environment and realized it was fairly easy and doable.
A similar approach for Slumberland, here weāre showing off Dreamswept Plains
Iām pretty happy with how this is looking and I think it will be a really nice moment when youāve completed the game and get to briefly revisit each of the domains.
Two other small things worth mentioning that I worked on but right now are still only in text form: the gameās Artbook and the Powerline to the Professor.
The Artbook
I wanted to save this for very late, but I need to at least plan out whatās going to be in here because I want the artbook pages to be littered throughout Slumberland for you to find, so I need to know how many sections/pages we have and roughly what content they contain so that I know where they should go in the world and I can get those placed. So Iāve begun planning out exactly whatās going into this.
Powerline to the Professor
Iāll show this off more once Iāve got some sprites to show (this is something Iām hoping to get JoĆ£oās help with) but I built out the dialogue logic and script for a āhotlineā for which you find booths throughout Slumberland. This is a lot like the Nintendo hotline people my age will recall from their youth. You can use this hotline to call up āthe Professorā to get tips about the game. Right now a lot of simple game tips are shared by Flip, but I want a lot of that kind of information to come from these booths instead. More to come on this topic in the near future!
And thatās it for stuff I can show off that I worked on this month.
I think thereās definitely some interest overlap with Little Nemo and the exploration focus of this Kickstarter for Mountain Soul. Check it out:

Mountain Soul is a cozy platformer that invites you to relax, explore, and discover the quiet wonders of a serene mountain landscape. Set in a world where nature thrives, this game combines gentle exploration with meaningful interactions, encouraging you to take your time, immerse yourself in the tranquil surroundings, and uncover the mountainās hidden secrets.
Thanks so much for reading all the way down here. As always, Iād love to hear your thoughts on this update and things youād like to see in upcoming updates. Weāre roughly six months out from our release window, which might sound like a long time for you all, but that means things are all coming together right now. Keep an eye on the Discord for updates because weāll be looking to do some more thorough playtesting of the entire game very soon. If thatās something that is appealing to you, make sure to watch for that opportunity. Thanks for reading, Sleepyheads!
-Dave