Build it, put players in it, see what survives
Procedural Press — AI + Game Dev • Subscribe
Spawn is making a case for testing game ideas in front of players early. Its appeal is the short distance between asking for a mechanic, playing it with someone else, and changing it while the session is still fresh. For developers deciding how much of a project to build themselves, that makes the platform worth examining as a place to learn what a game needs.
The next question arrives quickly: how much of that game can travel with you?
Spawn shortens the trip to a playtest
The Spawn 6 release, published September 5, puts live iteration at the center of the product. Spawn says its AI collaborator, Savi, can edit a world while players occupy it, join as a player, and keep a history of changes. Published versions can stay fixed while development continues. Streaming worlds, cross-world portals, and persistent player and world state are part of the same release.
Those features connect several jobs that usually require separate work: building the scene, keeping a multiplayer session running, saving what happened, and deciding which update players receive. The useful test is whether that integration gets a small game into other people's hands sooner and makes their feedback easier to act on.
There are still operating limits. The release notes flag vehicle jitter on some machines, expensive foliage shadows, and migration issues for older games. Savi also needs someone to keep the world open while she works. Existing games remain on their previous engine until explicitly migrated. These are the platform's published capabilities and caveats; they are not results from our own performance testing.
The publishing documentation adds the other half of the loop: published worlds have live figures for plays, players, return visits, and update performance, which Savi can also read. That suggests a concrete workflow: build a short session, publish it, watch where people return or disappear, then change one thing and test again.
The decision to rebuild elsewhere needs to account for distribution. Spawn's FAQ says there is no export to external platforms. It allows importing assets and inspecting code, but those features do not establish a supported path to a standalone release. A prototype can teach you which mechanics deserve more work; carrying its multiplayer, persistence, and platform services into another engine is a separate undertaking.
Choose the experiment accordingly. If the question is whether friends enjoy a five-minute co-op encounter, a shared platform can be a useful test bed. If the question is whether your eventual standalone game runs on its target hardware, you need that build and that hardware in the loop.
Projects Worth Watching
- Veilwake has a free Windows development playtest. You pilot a courier ship through living clouds, managing momentum and the traces you leave while creatures respond to sound, heat, and light. There are five crossings and no weapons. The page asks testers to report their hardware, crossing, and confusing moments; performance tuning and encounter balance remain in progress. This is a downloadable build, with AI assistance disclosed on the project page.
- Graven, from Basalt Games, has an upcoming Steam listing for December 2026. The Gothic RPG casts you as a physician's apprentice searching for your missing mentor and the man you helped resurrect. Its design premise gives character weaknesses a role in conversation alongside strengths: poor empathy or wit can change the responses and opportunities available. A project to watchlist; the listing is not a released build.
Tools & Drops
Cranberry Forge packages fifteen independent game-development tools and two playable templates for Three.js projects. The useful detail is their scope: Signal pairs combat warnings with matching hit-area queries; Satchel handles inventory and crafting; Keepsake validates save migrations. Packages include integration guides, TypeScript declarations, and tests, and no Forge tool requires another Forge tool.
The showcase lets developers inspect examples before integrating them. The repository explicitly leaves multiplayer authority, persistence, and transactions between systems with the host game. It targets WebGLRenderer and makes no WebGPU performance claim. Packages are not yet on npm; the documented installation path uses locally packed archives. That makes the ownership and integration work reasonably clear before you adopt a module.
Spaceplate's WebGPU branch exposes a different starting point: a Svelte and Threlte frontend with SpacetimeDB backend wiring. Its README describes a WebGPU renderer with a WebGL fallback, configurable post-processing, Rapier physics, action-based input, and development controls for scenes and effects. Treat it as a working branch to inspect and test against your own requirements. The code gives builders something concrete to evaluate; it does not establish how their finished game will perform on a handheld or an older laptop.