Tomasz Strzalkowski

Game environment art explained

Game environment art

A diagram of a game environment assembled from six repeated modular blocks standing on a grid line, each labelled as a module. Self-drawn illustration.

Game environment art is the discipline of building the three dimensional spaces a video game takes place in: the terrain, architecture, props, surfaces, foliage and lighting that together form a playable world. An environment artist produces and assembles the geometry and materials of a level so that it reads clearly to the player, supports how the level is meant to be played, and runs inside a fixed budget of memory and frame time. The discipline sits between level design, which decides what a space does, and rendering technology, which decides what it can afford to be.

What a 3D environment artist actually does

The output is rarely a single hero object. It is a library of parts, plus judgement about how they are arranged. The role covers several overlapping activities.

  • Modeling: building the meshes for walls, floors, structure, terrain, vegetation and props, usually in a package such as Maya, often at two levels of detail.
  • Sculpting: adding organic detail, damage and ornament in a tool such as ZBrush, then baking it into normal and ambient occlusion maps so a low polygon mesh reads as far denser than its triangle count.
  • Texturing: producing the surface response of a material, historically in Photoshop and now largely in Substance 3D Painter for per asset work and Substance 3D Designer for procedural materials.
  • Set dressing: placing the finished pieces so the space feels inhabited and the player’s eye is guided toward the intended path.
  • Lighting: establishing mood, contrast and readability through baked global illumination, dynamic lights, or a hybrid of the two.

Studios divide this differently. Larger teams separate prop, material and lighting artists into distinct roles; smaller teams expect one person to carry a space from blockout to final polish.

The pipeline from blockout to lit level

Greybox and blockout

A level normally begins as a greybox, or blockout: a rough, untextured arrangement of boxes and planes standing in for the final geometry. It exists to test gameplay: whether cover is spaced correctly, whether sightlines work, whether a jump is reachable. Because it is cheap, it can be rebuilt many times. Art production is withheld until the greybox plays well, since detailing a space that is later torn apart wastes the most expensive labour on the project.

Modular kit creation

Once the layout is approved, the artist derives a kit from it: reusable modules on a shared grid, such as a wall segment, a corner, a doorway, a floor tile, a stair run and a ceiling piece. These snap together predictably, so a level can be assembled and re-assembled quickly, and the kit is sized to the blockout so the finished art occupies the same volume as the greybox it replaces.

Texturing, set dressing and lighting

Meshes are then unwrapped, high detail is baked onto them, and materials are authored. Wear, dirt and edge damage are narrative information, not decoration: they tell the player how old a place is and what happened in it. The kit is finally populated with unique props, and the level is lit. Lighting comes last because it depends on final geometry, and it has the greatest effect on how a space is perceived: poorly lit, even a well built environment reads as flat.

Modularity, trim sheets and reusable kits

Environments are the largest asset category in most games, and building every wall as a bespoke object fits neither a schedule nor a memory budget. Modularity solves both at once.

A trim sheet is the characteristic technique: one texture laid out in horizontal bands, each band a reusable strip of detail such as a moulding, a pipe run or a panel edge. Many meshes map their UVs onto bands of that one sheet, so dozens of distinct objects share a single material and texture, cutting both memory use and draw calls.

Related techniques follow the same logic. Tiling materials cover large surfaces at high texel density without a large unique texture. Decals add localised damage, signage and grime over a tiling base, breaking up repetition without new geometry. Vertex blending mixes two materials, for example concrete and moss, by painting on the mesh itself. Together these let a small kit produce environments that never visibly repeat.

Environment art and level design: overlap and division

These are separate crafts operating on the same object. A level designer owns the space as a system: pacing, encounter placement, navigation, difficulty, scripted events. An environment artist owns it as a place: what it is made of, how old it is, how light falls in it, what it communicates before a word of dialogue is spoken.

The overlap is unavoidable and productive. Moving a wall for visual composition can break a sightline the designer depended on, while a silhouette or a coloured light can solve a wayfinding problem geometry was not fixing. Artists on some projects therefore contribute directly to layout work. Tomasz Strzalkowski, for example, is credited with additional level design on Gears of War (2006), a credit sitting on exactly that boundary.

What a lead environment artist coordinates

A lead environment artist is responsible for consistency and throughput rather than for personally producing the most assets. Typical responsibilities include:

  • Defining the visual target and art direction rules, so work from different artists and outsourcing partners looks like one world.
  • Setting technical standards: grid size, unit scale, texel density, naming conventions, collision and level of detail requirements, material limits.
  • Distributing work and tracking which spaces are blocked on design decisions.
  • Negotiating budgets with engineering, since memory, draw calls, shader complexity and lightmap resolution are shared.
  • Reviewing work and making the final call when visual intent and performance conflict.

This is the role Tomasz Strzalkowski held on Bulletstorm (2011) as Lead Environment Artist at the Warsaw studio People Can Fly.

Performance and memory constraints

Environment art is a discipline of constraint. Every level must render within a frame budget, roughly 16.6 milliseconds at 60 frames per second or 33.3 at 30, and fit the memory available on the target hardware. Artists therefore work against measurable limits:

  • Triangle and vertex counts, controlled by level of detail chains that swap in simpler meshes at distance.
  • Draw calls and material count, reduced by sharing materials across a kit and instancing repeated meshes.
  • Texture memory, controlled by atlas layout, texel density targets, compression and streaming.
  • Overdraw, the cost of shading pixels later hidden, which foliage and transparency multiply quickly.
  • Occlusion, the deliberate use of corners and blocking geometry so the renderer never considers the whole level at once.

A bend in a corridor or a low arch often exists partly to give the engine something to hide the rest of the level behind.

How PBR and modern engines changed the discipline

The move to physically based rendering was the largest shift in the craft. Under earlier workflows, artists painted lighting directly into diffuse textures, so an asset only looked correct under the lighting it was authored for. PBR separates surface properties, base colour, roughness, metalness and normal, from the lighting environment and describes them in physically meaningful terms. Assets authored this way behave plausibly under any lighting, which makes them portable between levels and makes review more objective: a value is either inside the physically sensible range or it is not.

Engine capability changed the workflow in parallel. Real time editors such as Unreal Engine let artists assemble, light and evaluate a space inside the running game rather than an offline renderer, collapsing iteration from hours to seconds. Node based material editors moved shader authoring into the artist’s hands, and procedural tools made whole families of surfaces adjustable rather than repainted. Real time global illumination and virtualised geometry have since relaxed some traditional polygon budgets, though the underlying discipline of building readable, coherent, affordable space has not changed.

Where to go next