SPECIMEN · 021 · § I · AUTHORING · SUBSTANCE DESIGNER
PROJECT LAVOS · THE STACK
The graph is the material. ALLEGORITHMIC · ADOBE · NODE-BASED PBR · 2003

substance designer.

SPECIMEN 021 · SECTION I · AUTHORING
Every other §I tool produces geometry. Substance Designer produces material. A node graph cooks a set of PBR maps — base color, roughness, normal, height, metalness — that downstream tools fetch and apply. The graph is the source; the maps are the bake.

The composition idea is borrowed from Houdini and applied to a different domain. Where Houdini's nodes operate on geometry, Substance Designer's nodes operate on 2D channels — perlin noise, voronoi cells, gradient ramps, blur, levels, blend modes. Wire them together and the output is a physically-based material: not a single image, but a coordinated set that tells a renderer how every part of the surface receives light.

Five channels carry the message. BaseColor is the albedo — what the surface would look like under flat lighting. Roughness tells the GPU how blurry the reflection should be at this point. Metalness chooses between dielectric and conductor (insulator or metal). Normal perturbs the surface's notion of up; bumps and grooves come from this channel without adding any geometry. Height drives parallax and tessellation. The graph builds all five at once.

The win is parametric materials at scale. Change one slider — grain density, scratch frequency, oxidation amount, edge wear — and the entire material set re-cooks. Studios author one substance for "weathered copper" and use it across thousands of assets, dialing parameters per asset. Every modern game pipeline runs on substances. Every modern Unreal/Unity asset pack is a folder of substances. The map set is the deliverable; the graph is the source of truth.

SUBSTANCE GRAPH · 5 RECIPES · PBR · 256² OUTPUT
CONCRETE_PBR_01 · cook 0.12 s
Graph · pipeline
Perlin NoiseSOURCE
scale 14 · seed 42 · disorder 0.6
LevelsREMAP
in (0.18 → 0.86) · gamma 1.10
BlurFILTER
radius 1.4 · directional N
Gradient MapCOLORIZE
3 stops · warm gray
Normal & HeightSPLIT
strength 0.65 · invert N · OpenGL
PBR Channels
Base Color#7A766C
Roughness0.85
Normalstrength 0.65
Metalness0.05
graph cooked · 5 outputs · MaterialX export ready
substance.sbs · the procedural pipeline (excerpt)
// Excerpt from a real Substance graph, the .sbs format. The graph
// stores nodes, parameters, and connections — the runtime "cooks"
// these into the four-channel map set per export.
<graph identifier="weathered_concrete" outputs="basecolor,roughness,normal,height">

  <compInstance uid="perlin_01" path="sbs://noise.sbs/perlin_noise">
    <parameters>
      <parameter name="scale"     value="14.0" />
      <parameter name="disorder"  value="0.60" />
      <parameter name="$randomseed" value="42" />
    </parameters>
  </compInstance>

  <filter type="levels" uid="levels_01">
    <in_low  value="0.18"/>
    <in_high value="0.86"/>
    <gamma   value="1.10"/>
    <connect from="perlin_01.output"/>
  </filter>

  <filter type="gradient_map" uid="grad_01">
    <stop position="0.00" color="0.42, 0.40, 0.36"/>
    <stop position="0.55" color="0.51, 0.48, 0.44"/>
    <stop position="1.00" color="0.59, 0.55, 0.50"/>
    <connect from="levels_01.output"/>
  </filter>

  <filter type="height_to_normal_world_units" uid="normal_01">
    <surface_size value="100.0"/>
    <height_depth value="0.65"/>
    <connect from="levels_01.output"/>
  </filter>

  <output name="basecolor"  from="grad_01.output"/>
  <output name="normal"     from="normal_01.output"/>
  <output name="roughness"  from="levels_01.output"/>
  <output name="height"     from="levels_01.output"/>

</graph>
Lineage
2003
Allegorithmic founded in Clermont-Ferrand, France. The pitch: procedural materials are smaller, parametric, infinite-resolution.
2008
Substance Designer 1.0 ships. Node-based PBR material authoring becomes a discrete craft in game and film pipelines.
2014
Substance Painter ships as the sibling tool. Designer authors materials; Painter applies them to specific assets. Together they redefine the texturing workflow.
2016
The Substance Source library opens — thousands of pre-built procedural materials, each one a graph studios can customise. The marketplace is the catalog of a craft.
2018
Adobe acquires Allegorithmic. The tools rebrand to Adobe Substance 3D and integrate with the broader Creative Cloud pipeline.
2020
The Substance 3D suite consolidates: Designer, Painter, Sampler (image-to-material), Stager (look-dev). One graph, one bake, multiple outputs.
2024
Substance 3D Designer 2024. MaterialX export, USD integration, neural texture features. Still the default upstream of every modern PBR pipeline.
Adjacent in the stack
Substance Painter
The sibling. Designer authors the material; Painter applies it across a specific asset's UVs.
MaterialX
The open material standard. Substance graphs export to MaterialX for cross-DCC interchange.
Marmoset Toolbag
Material baking and look-dev. Pairs with Substance for portfolio renders and asset review.
KTX2 / Basis
The compressed-texture format the baked map set ships as. Substance → glTF Transform → KTX2.
Mari
Foundry's high-end texture-painting tool. Different position — pixel-painting, not procedural — in the same § I slot.
Quixel Megascans
Photoreal scanned-material library. The data-driven cousin to Substance's procedural-first philosophy.
graph · cook · ship.
SPECIMEN 021 · MMXXVI
§ I · AUTHORING
prev · 020 unity hdrp · ../the stack