The camera was lying
Four releases in one night, a fleet of diagnostic agents reading the engine line by line, and a detective story that ends with the screenshot tool confessing to a crime it had been committing since the beginning.
A real sword
The first-person sword is no longer a mathematical sketch. It's the real thing — steel blade, engraved golden crossguard, leather-wrapped grip — a proper mesh riding a camera-anchored transform, driven by a CPU port of the exact windup-slash-settle timing the shader version used, so the swing feels identical. The procedural field-sword still exists: the browser build keeps it, and one environment variable brings it back natively. But when you look down in RACTR now, you're holding a weapon.
Spiders in the woods, knights in the barrows
The bestiary grew: Duskweaver Spiders now prowl Vantiel Woods, and a new camp — the Silkhollow — is nothing but spiders, lurkers, and a boss matron named Vess who does not want visitors. The Barrowfield gained Risen Knights: and here's a dirty secret of game development — the source library had no usable animated knight rig, so the knight is a composite: skeleton rig, plate-armor tint, real sword in its bony hand, all riding systems the engine already had. Agents of Bayne now unmask holding a staff. The dead march armed.
The freeze, found and killed
The "game freezes as I run around" report came down to one line of archaeology: every creature that walked into your interest radius triggered a synchronous model load on the render thread — disk read, parse, GPU upload, per creature. A new traversal benchmark (the old one never moved, so it never caught it) clocked single frames at 1468 ms. Models now stream in on a worker thread while the world keeps rendering — the way an MMO should.
Trees, stars, and an honest horizon
Distant trees were losing their trunks — the raymarcher's far-field step floor was quietly bigger than a trunk is wide, so rays stepped clean over them. The floor is now a cruise floor that re-honors the distance field near surfaces, paired with a step-rate-independent atmosphere integral so the fix couldn't resurrect an old halo bug. And the night sky woke up: three scales of spectrally-tinted stars, a Milky Way band, dithering to kill gradient banding, and the Hosek atmosphere finally enabled on native (the browser always had it — native players were getting the flat sky).
The confession
While placing the new sword, it refused to appear in any screenshot. Hours of probes later — transform ladders, entry-point swaps, matrix forensics — the truth surfaced: the screenshot tool had been photographing the raymarch buffer, not the screen. Every character, every weapon, every corpse, the entire HUD — composited later, invisible to every screenshot ever taken. The sword had probably been working for an hour. The tool now captures the frame the player actually sees, and the first honest screenshot showed the sword in hand, the whole cast standing on the horizon, and a long-standing "are characters even rendering?" mystery closed by a one-word answer: yes.
Engine v0.19.0 (four releases: v0.18.0 → v0.19.0). Verified per release: 37 unit tests, 4 physics gates, 38-stage two-server bot verification, headless perf gate under the 22 ms budget. Next on the block, from the world-audit that found an entire terrain system built and disconnected: mountains, lakes, and biomes — the world stops being a billiard ball.