Vol. 07 · The JournalEN · Edition

Free Interactive Games · Play in Browser

01 · Game Center

Branching stories you can play free in your browser — no download required.

See every game

A foundation for building Web games

etaWorldOS is a Web game building infrastructure, not only a game catalog. Its core is a browser-native 3D World Builder for shaping terrain, placing voxel and GLB objects, searching the shared asset library, adding music, and starting from editable themed worlds in real time with Three.js and WebGL.

The builder is backed by a reusable asset foundation: models, textures, audio, shaders, loaders, and self-hosted vendor runtimes. These resources make the path from an empty browser tab to a playable 3D world concrete, inspectable, and shareable — without requiring a Unity export or a separate native app.

The Game Center is the proof layer: rhythm racing, tower defense, snooker, tank battles, and other native Web games built on the same browser-first principles. The engineering blog opens up the systems behind them, from rendering and physics to cameras, shaders, and asset loading.

02

Build, ship, and inspect

03 products in this issue
01Play

Game Center — Free Browser 3D Games

A dozen native Three.js / WebGL 3D games — rhythm racing, tower defense, snooker, snake-crossroad, tank battles. Instant play, shared leaderboards, no download, works on desktop and mobile.

02Create

3D World Builder — Browser Game Editor

Build editable browser-native worlds with terrain, voxel and GLB models, searchable game assets, online music, seven themed templates, and a self-hosted Three.js runtime.

03Tools

GameTool

A growing set of free single-purpose tools for gamers and indie devs — HoYoverse gacha probability calculator (Genshin / HSR / ZZZ), Kepler equation solver, TLE decoder, moon phase.

03

Latest from the engineering blog

See all posts →
Dispatch · 012026-08-11

Zero art assets — building every polygon, texture, and shader in code

Pokémon of the Forest ships no GLB files, no PNG textures, no baked normal maps. Every creature is marching-cubes-meshed from Wyvill metaballs at boot; every leaf is a 2D-canvas Bézier fill baked into a CanvasTexture; every terrain patch is an analytic heightfield sampled onto a PlaneGeometry; every skin material is a MeshPhysicalMaterial with a custom subsurface-wrap term injected via onBeforeCompile. This post walks the seven techniques that let a browser game with ~24k lines of TypeScript render Pallet Town without downloading a single texture.

Dispatch · 022026-08-11

A Pokémon chapter as a 120-line typed state machine

Pokémon of the Forest's opening chapter — pick a starter, catch three research bugs, upgrade your net, cross the meadow, find rare bait, defeat the guardian — runs on a single ChapterDirector class that accepts a discriminated-union event and either advances a step, mutates a side condition, or rejects the event with a typed error code. No flags scattered across the codebase, no "did we already do this" audits, no invalid save states.

Dispatch · 032026-07-14

How Infinitown fakes an infinite city with 81 chunks and mod 9

The infinite-scrolling town in our Infinitown gamecenter port isn't procedurally generated — it's a Möbius carpet. A 9×9 pool of pre-built chunks maps onto a 9×9 grid of fixed container slots through modulo arithmetic, and camera drags rebind slots to different pool entries instead of spawning new geometry. This post walks the four moving parts (pool, containers, mapping, drag event) and explains why the whole system holds together with zero allocations at runtime.

04

Frequently asked questions

Q01Can I play 3D games in the browser without downloading anything?

Yes. Every game in the MetaWorldOS Game Center is a native browser game built with Three.js on WebGL 2. Nothing to install, no plugin, no Unity WebGL bootstrap — the whole game loads over a normal HTTPS request in under a second on a broadband connection and starts running immediately. Free tier requires no account.

Q02What is Three.js and why is it fast enough for real games?

Three.js is a JavaScript library that wraps WebGL 2, the browser's native GPU API. It gives you the same underlying GPU access as Unity or Unreal — hardware instancing, PBR materials, post-processing — but ships zero runtime download because the browser already has WebGL. On mid-range hardware you get a stable 60 fps for the kind of games in our Game Center (a few thousand draw calls, streaming asset loads).

Q03Do these browser 3D games work on mobile phones?

Yes. Every game auto-detects mobile Safari, mobile Chrome, and in-app browsers, then enables touch controls, halves the render resolution when needed, and lowers post-processing to hit 60 fps on mid-range Android and any recent iPhone. No separate app version — the same URL works everywhere.

Q04Are the games really free? Any ads or accounts?

The full Game Center is free with no ads inside gameplay. An account is optional — you only need one to submit to shared leaderboards or sync progress across devices. Sign-up is one form field, no email verification loop.

Q05What is included in the Web game infrastructure?

The foundation includes the 3D World Builder, seven editable voxel and low-poly templates, searchable GLB models, reusable textures, online and bundled game audio, self-hosted Three.js vendor runtimes, browser-native rendering patterns, and working Web game examples in the Game Center.

Q06How are the games built? Is there a technical write-up?

Yes. The engineering blog documents every non-trivial system we ship: the 700-line Keplerian solar system, real-time meteor showers in WebGL, an SGP4 satellite tracker running client-side, and per-game breakdowns of physics, camera, and shader work. If you're curious about doing this yourself, the blog is the fastest primer.

— Fin —Vol. 07

Start with a game

The Game Center is the fastest way to experience MetaWorldOS — free browser-native games with no download. Continue into the Builder when you are ready to create.

Open the Game Center
— The MetaWorldOS team