Desktop
Use WASD or arrow keys to move. In single-player, press E to plant. In simultaneous two-player mode, Player 1 uses WASD and F, and Player 2 uses arrow keys and L.
An offline 3D garden cleanup and tree planting game by Quantum Billing LLC. Play in the browser, download native builds, or let an LLM control the game through the built-in agent API.
Use WASD or arrow keys to move. In single-player, press E to plant. In simultaneous two-player mode, Player 1 uses WASD and F, and Player 2 uses arrow keys and L.
Use the on-screen joystick to move and the plant button to plant trees. The game is designed for mobile browser and Android builds.
Pick up trash, plant all tree patches, stop Mtermish minions, and defeat the boss to finish each level. Levels are randomized and playable offline.
The live game exposes window.QuantumGardenAgent, so a model-driven browser harness can observe state, act, step fixed frames, and start a human-like auto-player.
const agent = window.QuantumGardenAgent;
agent.reset({ levelId: 1, seed: 'llm-demo' });
agent.observe();
agent.step({ type: 'moveToNearestTrash', frames: 8 });
agent.act({ type: 'plantNearest' });
// Watch a softer human-like controller play.
agent.startHumanPlayer({ autoAdvance: true });
agent.humanStatus();
agent.stopHumanPlayer();
For deterministic tests, use web/src/input/llm-agent.js. It supports seeded resets, high-level actions, setHumanMode(), humanStep(), and playLikeHuman() without DOM or WebGL.
Published July 4, 2026. Includes web, desktop, Android, and Apple project artifacts from the platform build workflow.