Explainer

Voxel games online, explained simply

Quick answer

A voxel game is a 3D world made of cubes on a grid. Because every cube is just data, you can add or remove them instantly, which is why voxel games became the standard for building. You can play one free online right now in a browser tab, with no download.

Voxel, in one paragraph

Voxel is short for volumetric pixel. A pixel is a coloured dot on a flat grid; a voxel is a coloured cube on a 3D grid. Instead of storing a world as a fixed sculpted mesh, a voxel game stores a big table of coordinates and materials: put stone at x 4, y 0, z 7. Rendering means turning that table into cubes. Editing means changing one row. That is the entire reason block games feel so responsive to build in.

How a modern browser voxel world is drawn

Instancing

Every block of the same material is drawn from one cube mesh repeated thousands of times in a single GPU call. That is how a browser can hold an entire street of houses at a smooth frame rate.

Face culling and meshing

Faces buried between two solid blocks are never drawn. For liquids, the surface is generated as a hollow shell of flat planes covering only the exposed sides, which is dramatically cheaper than drawing full boxes and avoids the flickering you get when two surfaces occupy the same plane.

Lighting and shadows

A directional light acts as the sun and moves through the day, casting soft shadows through a variance shadow map with a tuned bias so flat walls stay clean. Lamps, fires and screens carry emissive materials with attached point lights, so at night the street genuinely glows.

Materials

Glass is transparent and reflective and deliberately does not cast shadow, so sunlight passes into a room. Water uses a custom shader with animated ripples and caustics rather than a flat blue cube.

Why the grid helps beginners

Free-form 3D modelling is hard because you can put anything anywhere. A voxel grid removes that freedom and, with it, most beginner mistakes. Walls are automatically straight, floors are automatically level, and scale is consistent, since a block is roughly a metre. A person who has never opened a 3D tool can build a recognisable house in twenty minutes.

From voxel toy to voxel place

Where BroadwayBlocks differs from a plain voxel editor is context. There is a real road, wide pavements, street lamps, hills on the horizon, drifting clouds, passing cars and pedestrians, a plane every 30 seconds and a 19 minute day followed by a 1 minute night. Your cubes sit at a real address with a pavement plaque. The grid makes building easy; the setting makes it worth doing.

Frequently asked questions

What is a voxel game?
A voxel game builds its world from cubes on a 3D grid, the way a 2D image is built from pixels. Each cube stores a material, so worlds can be edited block by block at runtime. Minecraft is the best known example.
Are voxel games the same as pixel art games?
No. Pixel art is 2D and flat. Voxels are 3D volumes, so a voxel scene has real depth, real shadows and can be walked through from any angle.
Why do voxel games run well on weak hardware?
Because thousands of identical cubes can be drawn with instanced rendering and hidden faces can be culled, a voxel world sends far less work to the GPU than an equivalent detailed mesh scene.
Can voxel games look realistic?
Yes. Modern voxel renderers add moving sun shadows with soft blur, fog, image-based lighting, emissive light sources, transparent reflective glass and animated water, which is what makes a cube world read as a real street.
Where can I play a voxel game online for free?
BroadwayBlocks runs in any modern browser at no cost, with 80+ block types, a shared multiplayer street and automatic cloud saves.

Play a voxel world in your browser

Registration is free, takes about 30 seconds, and you are auto-assigned a 30x30 plot with an address like 1 Broadway. Build in your browser on desktop, tablet or phone.