Finished reading: Game Design Deep Dive: Platformers by Joshua Bycer 📚


Currently listening: The Sandman Vol. 4: Season of Mists by Neil Gaiman 📚

This is my favorite storyline in the whole Sandman series– probably because it’s Lucifer-heavy, and I love Mike Carey’s Lucifer spinoff (maybe more than Sandman itself).


BuJoBook

Finished reading: The Bullet Journal Method by Ryder Carroll 📚

I skimmed or skipped some of the more philosophical material (like a chapter on “radiance”), but I have some good ideas about how to reinvigorate my bujo practice:

  • get back to the habit of reviewing the month-so-far every morning, or at least weekdays.
  • be more liberal about creating “collections” outside of the daily log flow, for particular projects, topics, or goals
  • just write more! let the journal be more of a log of ideas, thoughts, frustrations, and victories, and not just a todo list

Currently reading: The Bullet Journal Method by Ryder Carroll 📚

I’ve been using a bullet journal for a couple of years now, but lately, it’s been… I dunno. It’s a to-do list. I think I need to reconnect with bujo as a mindfulness practice, and not just a task tracker. When it was working well, I felt more effective, not just productive. I want to get that back.

I’ve never read the book before. Maybe it’ll help?


I was thinking about watching Midsommer, but reading the Wikipedia article was just enough horror for me.


Finished Listening: The Creative Act by Rick Rubin 📚


Spending the evening at Fairfax County Government Center, shuttling election materials between the loading dock (where I found this sign) and offices upstairs.


Currently reading: Game Design Deep Dive: Platformers by Joshua Bycer 📚


Finished Listening: The Sandman Vol. 2: The Doll’s House by Neil Gaiman 📚


A jam of my own

One thing I’ve learned about myself after participating in a couple of game jams: I like having deadlines.

So, I’m going to try setting a deadline for a personal project that I’ve been meaning to make progress on: a game about spoon theory. I want to have something playable (not necessarily done) by the end of March.

My aim here is:

  • a fun game
  • that leaves the player with increased empathy for/ understanding of folks who need to consciously manage their energy/stamina

… with a bonus goal of the game being somewhat relaxing and not too taxing. The game should be a good stim. It should restore spoons, rather than take them away.


Brakes Escape update

I’ve done a round of post-jam tweaking on Brakes Escape. The game no longer simply stops generating new platforms (and walls!) once you hit a certain level, sound effects have been added, and some bugs have been fixed. To make things a little more difficult, I’ve introduced “solid” platforms that you can’t jump through, and made the rising water gradually increase in speed.

There are still some things I’m unsatisfied with:

  • the death animation is pretty janky
  • the water is portrayed as just a translucent blue sheet that rises. I’d like it to look more like water.
  • Some sound effects are still missing, and there’s no music
  • I think it needs more platform types (like conveyor belts) and some additional hazards (enemies?) to really be interesting and fun.

So, what’s next? I think I want to adapt the game for mobile, while working on the above items.

I do plan to update the itch.io web version at least once more, to generate a single-threaded version once Godot 4.3 is released (soon?).


Currently listening: The Creative Act by Rick Rubin 📚


Surprised that, for a published-this-month technical book, Thrift Books had more inventory on hand and a better price than Amazon.


Results are in– I was hoping for higher scores generally , but I’m pleased with getting #14 in the “fun” category.

I am working on an update that fixes the most glaring bugs, and adds audio, a score, and other refinements, which I hope to upload next week.


“Flash of light-mode content” is the new flash of unstyled content.


Godot Wild Jam 66 postmortem

Some lessons learned from my recent game jam experience:

  • Don’t wait until the very end of the jam to download the export templates bundle (see screenshot).
  • The last few hours of the jam are NOT the right time to learn shaders
  • The last few hours of the jam are NOT the right time to learn parallax backgrounds

Godot features I attempted to re-create (poorly)

  • Path2D (i was trying to move platforms back and forth by tracking points and managing velocity, before I figured out that Path2D could do this for me)
  • One-way collisions (I had used an Area2D and code to manage what collision layers a platform is, to create the effect where you could jump through a platform from below, while it acts as if it’s solid when you land on it. Turned out this was built in, and a matter of checking one goddamned checkbox.

Godot features and nodes that I had never used before (besides Path2D/PathFollow2D and one-way collisions)

  • ParallaxBackground and ParallaxLayer (though I messed this up somehow, my background that is supposed to repeat stops repeating at some point)
  • The ability to place limits on camera movement, which I’d previously done myself via code.

The only add-on I used was Godot State Charts, which continues to be the bees knees.


Brakes Escape, my submission to Godot Wild Jam #66, is live on itch.io. There are a couple of bugs, half-baked feaures , and other compromises made in the name of having something shippable by the deadline, but I think it’s a promising start to a more complete game.


Escape game

Previously, I posted two ideas for Godot Wild Jam 66. I ended up spending a few days on the first one and realized I didn’t like where it was going and I didn’t feel good about getting it into shape for the end of the jam. So, I switched gears to the second one (a variation on an idea I’d already been tinkering with).

It’s going better, but I’m not sure it’ll be shippable by the deadline (4pm tomorrow). Still, it’s nice to have some momentum. I’m really happy with how the player character moves, but the game definitely needs more.. game. We’ll see how for I get it tomorrow.


I’m the PTA volunteer keeping an eye on our elementary school’s “tech club” again this session, and this time they’re going to be programming drones with Python.

I’m… a little jealous?


I’ve been pretty lazy about static typing in GDScript - but it’s pretty cool to see that there are performance benefits.