...
article cover image

Borderlands Cel Shading: Complete Implementation Guide

author avatar

Aarav MehtaAugust 3, 2026

Learn to recreate Borderlands cel shading in Blender, Unity, Unreal, and 2D tools. Practical shader nodes, post-processing tips, and optimization.

Most Borderlands “cel shading” tutorials start with the wrong assumption. They hand you a toon shader, a flat ramp, maybe a cartoon outline toggle, and then you spend hours wondering why the result still looks like a generic filter instead of Borderlands.

The problem isn't your taste or your setup, it's the premise. Gearbox's first Borderlands release used a hybrid pipeline, with hand-drawn textures scanned and colored in Photoshop, plus software that drew graphic-novel-style outlines and sharpened shadows to read more like an artist's work, not a pure cel-shading shader stack as Destructoid documented. If you want the look that players remember, you have to build for edge emphasis, tonal separation, and hand-painted texture work, not just a toon ramp. For a broader art-language reference, the differences between comic approaches are worth studying in different comic art styles explained, because Borderlands sits closer to illustrated graphic novel language than to classic animation shading.

Why Borderlands Is Not Pure Cel Shading

If you have followed a Borderlands cel shading tutorial and ended up with something that felt flat, the core issue is usually the premise. The game does not depend on a single toon shader to create the look, so a clean banded-lighting setup often misses the point. Gearbox described the first game's visual approach as a hybrid of hand-painted textures, graphic-novel-style outlines, and sharpened shadows rather than pure cel shading, which matters because the style was built to resemble an artist's ink work, not flat animation bands.

The naming problem causes real production mistakes

A lot of creators use “cel shading” as shorthand, but that label pushes people toward the wrong controls. True cel shading usually means quantized lighting bands, while Borderlands' look was built on traditional 3D rendering plus manually prepared art assets. In practical terms, you can get the comic-book feel wrong even if the shader technically looks “toon-like.”

That confusion keeps showing up in community discussions, and it is not just semantic nitpicking. People trying to recreate the style need to decide whether to prioritize toon bands, edge outlines, or painted textures. The answer is all three, but not in equal measure, and not as a one-click effect.

Practical rule: if your result looks like an anime filter, you are probably over-investing in lighting bands and under-investing in texture work and outline treatment.

Borderlands also became durable enough that users kept discussing how to remove its black outlines and “cell shading” effects years later in configuration guides, which shows the style was not a throwaway launch gimmick Steam community notes. That long life is a strong signal for creators, because it tells you the style reads as an identity layer, not a special effect layered on top.

For a broader art-language reference, the differences between comic approaches are worth studying in different comic art styles explained, because Borderlands sits closer to illustrated graphic novel language than to classic animation shading.

The Borderlands Art Pipeline Explained

Borderlands is easier to understand as a hand-painted stylized render than as a pure toon-shader project. The production logic follows a multi-pass rendering workflow. The scene is rendered normally, edges are detected in a later pass, and the final image is composited with tonality and outline treatment on top. A technical explanation of this pipeline describes using color, depth, and normal buffers, plus edge detection such as Sobel or a similar filter IgorsLab's cel-shading explainer.

That is why it never behaves like a single toggle. Borderlands' first release used hand-drawn textures scanned and colored in Photoshop, then added outline-style treatment and shadow sharpening to create the comic-book feel Destructoid's historical writeup. The look still feels handmade because the style comes from texture work, edge control, and post-processing working together, even when the geometry itself is simple.

An infographic detailing the eight steps of the Borderlands art pipeline from concept to in-game asset.

What the passes are really doing

The outline pass is structural. You render the base scene first, then derive edges from depth and normal information, then composite that line layer over the color pass. That sequence is why Borderlands-style art can keep forms readable even when the lighting gets loud or the surfaces get busy.

A few details matter more than they first appear:

  • Color pass first: this gives you the base lighting and material response.
  • Edge pass second: this catches silhouettes and internal structure from depth and normals.
  • Composite last: the outline layer has to sit cleanly over the color image or the style collapses into noise.
  • Tone shaping after that: posterized shadow handling helps push the comic-book feeling without killing readability.

The historical distinction matters because Borderlands' visual identity came from edge emphasis and tonal separation, not from conventional cartoon shading alone. Once that distinction is clear, the implementation choices across engines become easier to evaluate.

Implementing Borderlands Style in Unity and Unreal

Unity and Unreal both can produce Borderlands-style results, but neither engine gives you the look out of the box. You're building a compositing workflow, not a single material. The cleanest implementation path is to render color, depth, and normals separately, then use those buffers to build outlines and stylized grading in a final pass.

A professional digital artist using Blender dual monitor setup to create a 3D animated character model.

Unity needs controlled passes, not a novelty shader

In Unity, the practical route is to work through URP or HDRP, depending on how much control you need over the render pipeline. The important piece is access to post-processing and buffer data, because your outline logic depends on depth and normals more than on a diffuse ramp. If you only use a standard toon material, you'll get a stylized surface, but not the signature Borderlands separation.

What usually works best is this sequence:

  1. Render the scene into a color target.
  2. Capture depth and normal information as separate buffers.
  3. Apply an edge-detection pass over those buffers.
  4. Composite the outline layer.
  5. Finish with grading that pushes the image toward illustrated contrast.

That approach gives you room to tune line thickness, shadow sharpness, and local contrast without baking everything into the material itself. It also keeps your art team from having to fight one giant shader graph just to make a character read correctly in motion.

Unreal gives you a faster path to the same logic

Unreal is usually friendlier for this kind of work because the material and post-process ecosystem exposes the logic visually. A post-process material graph can handle the same multi-pass idea, especially when you want to prototype outlines without diving into engine-level changes. The engine-level NPR discussion in Unreal communities also makes the same point, that the look becomes much easier to control when shading logic, lighting response, and outline handling are kept intentionally separate.

A good Unreal setup starts with a lit base material, then layers post-process work on top. The line pass should be driven by depth and normal contrast, not by surface color alone, because relying on color edges makes the outlines unstable across varied environments. If you've ever seen a toon effect vanish on a pale wall, that's the bug.

If the outline disappears in bright areas, you're detecting color transitions instead of form transitions.

For teams using reusable asset systems, a well-structured sprite or character workflow can keep the same style consistent across variations. A useful adjacent reference is this bulk AI character sprite sheet workflow, especially if you're trying to preserve a recognizable silhouette language across many characters.

Implementing Borderlands Style in Blender and 2D Tools

Blender is often the fastest place to get close to the Borderlands look without engine overhead. The main reason is practical, Blender lets you separate the material response, the outline pass, and the final composite in a way that matches how the style holds together in production. A toon shader with limited steps gives you the base read, but the outlines and texture treatment do most of the work.

The Blender Path That Reads Right

Start with a stylized material setup, then keep the lighting response deliberately simple. The Borderlands look does not benefit from soft photoreal falloff, so the base shading has to stay controlled and readable. Build the outlines through the compositor or an edge-based method, then push the image with grading so it lands closer to a hand-inked print than a glossy 3D render.

Low-poly structure helps here too. A step-by-step low poly tutorial is useful because simplified geometry gives the texture work more visual authority. Borderlands-style assets read best when the forms are clear and the surface design carries the personality.

A few Blender choices tend to hold up in practice:

  • Limited shadow steps: keep lighting bands restrained so surfaces do not turn to mush.
  • Outline separation: do not place all contour work inside the material, use a dedicated edge treatment.
  • Painterly textures: add visible brush logic and uneven surface marks.
  • Controlled highlights: small white accents help sell the printed comic feel.

For teams building 2D variants, Photoshop or Clip Studio Paint needs a different mindset. Instead of trying to fake real-time shading, use thick ink outlines, cross-hatching, and deliberate texture breaks. Broad flat fills weaken the effect because the Borderlands language depends on shape interruption and surface detail. That is also why the style works for concept art and promo pieces even when the 3D pipeline is not involved.

If you move between 3D and 2D, keep the silhouette and line hierarchy consistent, then vary texture density for the output medium. Use the 3D render as a guide, not a constraint.

Practical rule: if the image still reads after you remove the fills and keep only the outlines, the design is probably strong enough.

For AI-assisted production, the same logic applies. Prompt for heavy black outlines, painted textures, high-contrast comic-book surfaces, and stylized 3D forms, because the term “cel shading” alone does not reliably steer the model toward the actual Borderlands result. An internal production reference that helps with this kind of workflow is the AI texture generator guide, especially when you need surface variety without repainting everything by hand.

Optimizing and Texturing for the Borderlands Look

The style breaks down quickly when the texture layer is too clean. Borderlands reads because the surfaces feel hand-painted, broken up, and slightly aggressive in their texture language, not because the models are wrapped in generic toon bands. Broad flat areas are risky because they drain the image of the small disruptions that make the style hold up at a distance.

Texture choices matter more than people admit

Visible brush logic, purposeful edge accents, and enough surface variation are what keep the material looking illustrated instead of procedural. Hand-painted textures do more than add detail, they carry the style's personality. Push too far toward clean PBR materials and the result starts drifting toward polished realism, which weakens the graphic-novel identity the look depends on.

A good texture strategy usually looks like this:

  • Use controlled irregularity: small shifts in tone and stroke direction help the surface feel drawn.
  • Break up large planes: do not leave walls, armor, or clothing as empty fields.
  • Reserve detail for focal zones: guns, faces, logos, and silhouette edges should carry most of the visual weight.
  • Keep darks readable: strong outlines only help if the darkest values do not swallow them.

For AI-assisted production, the same logic applies. Prompt for heavy black outlines, painted textures, high-contrast comic-book surfaces, and stylized 3D forms, because the term “cel shading” alone does not reliably steer the model toward the actual Borderlands result. A practical reference for that kind of workflow is the AI texture generator guide, especially when you need surface variety without repainting everything by hand.

On the optimization side, the outline pass is often the first thing that gets expensive because edge detection depends on extra buffer work. Threshold tuning matters more than brute-forcing resolution, especially if the post stack starts muddying the image. The technical explainer on Borderlands-style rendering notes that edge detection commonly uses depth and normal information, and that shadow gradation control is part of preserving readability IgorsLab's pipeline overview.

Where performance and style collide

Borderlands configuration discussions show that players kept adjusting post-process settings for years, which is a good reminder that the style is sensitive to small changes in the final render layer Steam community discussion. For creators, that means the final composite should be treated as a tuning problem, not a fixed recipe.

The trade-off is straightforward. Push the outline too hard and everything turns stiff. Push it too softly and the look loses its inked edge. The workable range usually sits where silhouettes stay clear, internal forms still get support, and the texture layer does most of the emotional work.

For 2D editors, the same principle holds without the buffers. Do not overuse filters that make everything uniformly crunchy. Keep manual control over line weight, shadow breaks, and highlight placement so the image still feels authored.

Building Your Borderlands-Style Asset Workflow

A reliable Borderlands-style pipeline starts before rendering and ends after compositing. The cleanest workflow is to decide early whether the asset is meant for real-time game use, still image production, or AI-assisted batch output, because each one demands a different balance between texture labor and outline treatment. A game asset needs stability under motion, while a promo image can spend more of its budget on stylized detail.

A practical production sequence

The workflow I'd trust looks like this:

  1. Block the silhouette first. If the shape reads badly in grayscale, fix that before touching shading.
  2. Paint the texture language second. Use hand-made surface cues, not generic material presets.
  3. Set up the outline pass third. Keep it form-driven so it survives different backgrounds.
  4. Tune the grading last. The final contrast shape should support the illustration, not overpower it.

That sequence prevents the most common failure mode, which is building a great outline over a weak asset. Borderlands works because the texture and silhouette logic are doing real design work before the post stack ever appears.

If you're working with AI or batch generation, the useful prompt language is concrete. Ask for heavy ink outlines, hand-painted textures, stylized comic-book rendering, and strong silhouette separation. Then post-process selectively, because a blanket filter usually erases the very irregularities that make the style convincing. For bulk creation pipelines and marketing asset sets, the AI art generator can help when you need consistent visual families without rebuilding every image from scratch.

What to avoid

Three mistakes waste the most time. First, don't rely on a toon shader alone. Second, don't let the texture layer become too uniform. Third, don't assume the outline pass can rescue weak design.

The most convincing Borderlands-style assets usually share the same trait, they feel drawn, not merely shaded. Once that's the standard, the engine, the compositor, or the AI model becomes a tool for preserving the style rather than inventing it for you.


If you want to produce Borderlands-style assets faster, Bulk Image Generation gives you a way to generate, refine, and batch out illustrated visuals without rebuilding every prompt by hand. Visit Bulk Image Generation to turn this workflow into a repeatable production pipeline for game art, social visuals, and stylized promotional images.

Want to generate images like this?

If you already have an account, we will log you in