GearBlocks in Early Access NOW!

Hey everyone, GearBlocks has now launched into Early Access!

https://store.steampowered.com/app/1305080/GearBlocks/

There will be a 10% launch discount until November 15th, so be sure to take advantage of that. Also, you can help out a lot by leaving a review on Steam.

Here’s a quick preview of what to expect if you buy the game:

Thanks for your patience and support over the years, I hope you enjoy the game. I have plans for some exciting post launch updates, but as always let me know what you’d like to see!

More tutorial and scripting improvements

Hey everyone, it’s been months since my last dev blog update! As you will hopefully have seen, I recently announced the coming release of GearBlocks into early access for November 9th.

A lot of my time lately was spent preparing for this announcement. The trailer video was the biggest chunk of this work: planning, building content in game (including many new built-in constructions!), capturing footage, and editing it all together. I also improved the Steam store page and website with new screenshots, gifs, blurb, presskit, etc.

Tutorial scenario

I recently took the game to a local indie meetup, and had a few people try out the tutorial scenario. It was really useful and informative to watch people play it in person. The feedback was somewhat sobering though, some found it too complicated and struggled with information overload!

So I made some changes to the tutorial to try and simplify the information presented to players, and added more code to handle edge cases where players were getting stuck.

I’ve also set up a new build configuration for a special demo build with just the tutorial scenario in it, which I’m planning to use for the Steam Next Fest (coming on October 9th).

Lua scripting

I’ve continued to improve the Lua scripting interfaces, exposing more properties and methods for manipulating parts and constructions, adding more tool interfaces, and more vector / quaternion math stuff.

Further improvements were made to some of the included script mods, including the builder tool extensions (now with the ability to set / snap the pivot position & orientation, change the manipulators to work in world or local space, etc.)

Kit building

For the trailer video I wanted to show time lapses of some constructions being built. I also want to try creating scenarios where the player follows instructions to build pre-designed blueprint constructions, a bit like building from a model kit.

So I implemented a feature I’m calling “kit building”, to cater for both of these situations. Parts can now be assigned a stage index and constructions have an active stage that can be set (where any of their parts in higher stages than the active one are hidden).

I made a script mod tool for setting part stage indices, and previewing a construction’s stages. I actually used this tool when capturing for the trailer, just manually advancing through the stages in order, revealing the parts.

I also prototyped a kit building scenario with a simple Lua script to allow the player to advance through a blueprint construction’s stages, automatically spawning the parts they need to build that stage. This idea has potential I think, but will need work to make it more user friendly.

Minor demo update

I decided to release another quick demo update, out now with some fixes and other small tweaks:-

  • Minor UI improvements, including a new “getting started” window that shows some helpful pointers when launching into a new game.
  • Improved attachment locking undo / redo (single command for multiple attachments).
  • Bug fixes (including fixing the differential idler gear centre-of-mass again).

GearBlocks Gameplay Trailer – Coming to Steam Early Access this November!

Wishlist and play the demo: https://store.steampowered.com/app/1305080/GearBlocks/

There are many things still to improve, but you guys have been waiting for so long, I think it’s time to finally get GearBlocks into your hands! My planned Steam early access release date is November 9th. I’m also planning on entering the Steam Next Fest from October 9th to 16th, hopefully with a special tutorial demo.

Hey everyone, quite a few fixes and improvements have accumulated since the last demo update, so I decided it was worth releasing another one.

Release notes:-

  • Many optimisations to UI, overlays, and indicators. Improves performance especially with a large number of parts / constructions.
  • Minor tweaks to builder tool:-
    • Click and drag “threshold” now only applies to move manipulator.
    • Prevented dragging the part selection’s pivot point below ground.
    • Increased targeting distance.
    • Removed “Prevent Interpenetration When Attaching Parts” toggle from “advanced options” (still available in the demo by setting “PartPenetrationTestEnabled” to false in the debug console).
    • Added toggle to “advanced options” to disable the centre of mass indicator.
  • Modified control wheel part behaviour to check for player distance and facing direction.
  • Added option to light part behaviour settings for disabling shadow casting.
  • Implemented copy paste for part behaviour settings.
  • Improved part resizing indicator to show numbered unit dimensions.
  • Gear engagement indicators now shown for all gears in part selection when aligning.
  • Added settings to controls options to invert horizontal and / or vertical mouse rotation of the part selection.
  • Updated help UI screen.
  • Bug fixes.
  • Upgraded to Unity 2021.3.26.

New map, and tutorial finished

Hey all, I’ve made a fair amount of progress on the game over the past month, so let’s get into what I’ve been up to.

“Gary Island” map

One conundrum I had while designing the tutorial scenario was where to locate it (i.e. which map to use and whereabouts on that map).  I could have used one of the existing maps but they are all pretty large and “open plan”, which made it hard to lay out the scene for the tutorial.  I needed something small with clear boundaries that spatially confine the player.

For a while I had been resistant to the idea of adding another map for the tutorial scenario, but it became apparent that this was going to be necessary, and worthwhile investing the time and effort in.  So I decided to make a new map, an island surrounded by water, with a 250×250 m playable area.

For long time followers of the game’s development, I resurrected the water from those old procedural island maps!  I was also reluctant to do this actually, as introducing water brings about a whole host of implications (what happens when you go in the water? buoyancy? drag? sound & particle effects? player swimming animations?)  So for now the water is beyond the map boundary and is just there for visual effect.

As usual, first I started with making the terrain height map:

image

Then, painted the textures (reusing those from the other maps):

image

Finally, added details (e.g. grass) and trees:

image

Overall I’m quite pleased with how the map turned out.  It has a central area (which I’ve used for the tutorial scenario), and other areas that are connected via paths for a bit of variety.  I’m thinking this will be good for other scenarios, and also as a general starter map for players.

Water reflection optimisations

After bringing back the water, I needed to do some performance optimisations to the old reflection rendering implementation (water reflections are rendered using another camera with a view that is flipped upside relative to the main camera).

I improved the code by eliminating some expensive per-frame calls (GameObject.Find(), GetComponent(), etc.) and getting rid of GC allocs.  I also reduced the level of detail during the reflection render (by overriding the LOD bias, turning off terrain details, and reducing the tree LOD switch distance).

Finally, I added a “video options” setting to make the water reflection rendering only include the terrain & sky, or be turned off altogether (falling back to a reflection probe).

Tutorial scenario

To finish the final iteration of the tutorial scenario, first I had to create a scene in the new map.  I laid out all the constructions, checkpoints, and so on for each of the tutorial stages that the player completes in sequence.

Then I worked on the scenario scripting, organising the Lua scripts by breaking them up into the tutorial stages.  The scripts are responsible for tracking player progress through the tasks they have to complete for each stage, showing a UI window with instructions (text and videos), and helping the player get back on track if they make a mistake.  This turned out to be a huge amount of work, but I think the results turned out really well.

Here’s a sneak peak of the start of the tutorial scenario:

image

So the tutorial scenario is now (more or less) complete, which is a huge milestone, as that was the last major task before early access release.  There’s still a bunch of work to do, but I’m now in a position to prepare the game for release which is very exciting!

Part resizing indicator

I’ve implemented another indicator that shows unit dimension numbers near a part when resizing it with the resize manipulator.

image

This makes it much easier to see the part dimensions while resizing, as it saves having to look down at the part UI overlay.

Script mods

The script mods included with the game have continued to develop.  For example, I implemented a “builder tool extensions” script mod that provides an interface with options for precise part placement.

I also improved and added to the various debug tools, and added a simple “hello world” example.  I can’t wait to see what script mods of their own players can come up with!

Tutorial, optimisations, and other improvements

Hey everyone, time for another long overdue update on what I’ve been up to lately!  I’ve mostly been focused back on building the in-game tutorial scenario, but I’ve also continued working on the game, both adding features to support scenarios, and making other general improvements.

Performance Optimisation

I noticed some performance issues, particularly with a large number of parts or constructions, so I decided to spend some time addressing these.

UI optimisations:

  • UI elements now only resize themselves to content when something changes, rather than every update.
  • Improved performance of link and part intersection indicators when looping through part instances.
  • Improved the compass overlay implementation (no longer sets gameobjects active / inactive).
  • Optimised the scene tool UI’s construction list update.

Other optimisations:

  • Removed unnecessary calculations from the construction update function.
  • Eliminated the composite update function altogether.
  • Eliminated or simplified some other fixed update functions.

These changes save over 1 ms on the main thread when there are a lot of parts / constructions in the scene (totalling a couple thousand parts or so).

Speaking of which, I’ve also investigated using Unity jobs to move work off the main thread.  This has the potential for some more significant performance improvements.

Here’s what I have planned:

  1. Gear and pulley wheel behaviour constraint updates – The code that figures out if a pair of gears are engaged, and the location of their engaged “teeth” (info that’s then used to update the ConfigurableJoints).  This could be done in parallel in jobs I think.
  2. Wheel behaviour constraint updates – Each wheel does a CapsuleCast and some other trickery to approximate a cylinder that smoothly rolls on the ground.  This is a prime candidate for using the CapsulecastCommand instead.
  3. Part selection’s “find valid attachments” code – Does a lot of OverlapBox calls if a large number of parts are selected, should be perfect case for replacing with the OverlapBoxCommand.
  4. Collision contact reporting (used for impact sounds etc.) – Horribly inefficient at the moment, but Unity just introduced the Physics.ContactEvent, which should be exactly what I need to improve this.

All but the first of these tasks will require upgrading to Unity 2022.2 though, which feels a bit risky at the moment.  I’m going to hold off until the LTS version comes out.

Unity 2021 upgrade

In the meantime however, I have upgraded to Unity 2021.3 LTS.  I had tried upgrading to 2021 a while ago, but found a couple of game breaking issues.  These seem to have been fixed now, and the upgrade went pretty smoothly this time.

The only slight issue is that old saved construction preview images now won’t load (compressed image size needs to be multiple of 4), but this can be resolved just by re-saving them first.

Building improvements

I’ve made various minor improvements and fixes to the building system:

  • The part selection pivot point can no longer be moved below the ground, preventing a construction from being “lost” underground.
  • Now only the move manipulator handle has “drag thresholding”, the translation handles move instantly.
  • Engagement indicators are now shown for all gears in the part selection during alignment.
  • Commands are now added to the undo / redo history when links are removed while detaching parts.
  • Fixed a bug where destroying an unfrozen construction didn’t add a command to the undo / redo history.

Parts

I’ve also made a few minor improvements and additions to the parts:

  • Implemented a resizable “L Plate” part, useful for connecting stuff at right angles.
  • Added checks for player distance and facing direction to the control wheel part behaviour (prevents the control wheel from being used when the player is too far away).
  • Added a light part behaviour option to disable shadow casting, useful if you want to save performance for a construction with a large number of lights.
  • Fixed a bug where spring damper / linear actuator pistons could be attached to the wrong alignment point.

Here’s what the L Plate part looks like:

Lua scripting

I’ve worked on various new features that are available for use from within Lua scripts (as scenarios or script mods), mostly to support what I need for the tutorial scenario.

Video player

Implemented an in-game video player, with an interface that allows video players to be created from Lua scripts.  Here’s a test Lua script, showing a video playing in a window:

I’m planning on using this to show short explanatory video clips in the tutorial scenario.

Scroll list UI element

Implemented a scroll list UI element, can be added to a window like any other element, but then other elements can be added to it (including more scroll lists!)  For example the undo / redo command history script mod can now show a larger history that can be scrolled through:

Unlabelled UI elements

Added unlabelled variants of the slider, input field, and dropdown UI elements for more flexibility.  Shown here in this Lua UI unit test:

Profiling metrics

Exposed performance profiler metrics (e.g. memory, rendering etc.), so that script mods can implement custom profiler UI windows, for example:

Tutorial scenario

My original plan was to have multiple little tutorial scenarios, each one introducing a few new concepts at a time.  As I mentioned in a previous post, this idea turned out to be a bit boring in practice, and didn’t really create a good first impression for the game.

So then I pivoted to having one large scenario with a lot of things to do in it, essentially combining the separate tutorials into one that are followed through step by step.  However as I started to build this out I realised it was getting too big and complicated.  Apart from anything else, performance was getting to be marginal with so much going on in the scene at once.

So, I went back to the drawing board and reworked my design, trying to really focus on what concepts I wanted to introduce in each tutorial stage, and what concepts to reinforce from previous stages.

The result is a bit more pared back than what I had before, but I think it should still be fun.  It will still be a single scenario / scene containing multiple activities that the player goes through, but with less extraneous stuff.

The first few activities will get the player used to activating and using part behaviours, using the construction menu, and so on.

After which, each activity will require the player to do something (e.g. attach a control wheel, reposition a gear, link some pulleys, etc) that will allow them to open a box with a part inside.  When they’ve completed all the activities they can collect all the parts together and build something out of it, as the final step (using everything they’ve learned so far).

For example, the first of these activities is to simply use the builder tool to move a weight and place it on a platform.  Things ramp up in complexity from there!

The design is now complete, I have built all the individual constructions for the scenario, and made a good start on the Lua scripting.  I’m planning on making another (small) map for the game, to be used for this tutorial (and any others to follow).

This tutorial scenario is really there to get new players used to using the building controls, it doesn’t go much beyond that.  I would like to also build additional tutorial scenarios that teach advanced use of gears, mechanical principles, have more complex puzzles to solve etc.  These will have to come after the early access release though.

GearBlocks on Steam

GearBlocks on Steam

GearBlocks on Steam

GearBlocks on Steam