3D Texturing 3D Texturing 5 — Questions and Answers
Question 1: What is 'tri-planar mapping' and when is it most useful?
- A UV method that splits a mesh into exactly three UV islands
- A technique that blends three axis-aligned projections to texture a mesh without UV seams, useful for complex or procedural geometry (Correct answer)
- A rendering pass that applies textures from three light directions
- A method for projecting textures onto three separate mesh objects simultaneously
Correct answer: A technique that blends three axis-aligned projections to texture a mesh without UV seams, useful for complex or procedural geometry
Tri-planar mapping blends textures projected along the X, Y, and Z world axes based on surface normals, eliminating UV seams on geometry like rocks, terrain, or procedurally generated meshes.
Question 2: In Marmoset Toolbag's baking system, what does 'skew correction' help resolve?
- Prevents mipmaps from blurring baked textures
- Corrects tangent-space normal map artifacts caused by skewed or non-uniform UV stretching (Correct answer)
- Aligns the cage mesh to the low-poly silhouette automatically
- Removes seams introduced by hard edges in the UV unwrap
Correct answer: Corrects tangent-space normal map artifacts caused by skewed or non-uniform UV stretching
Skew correction in Marmoset adjusts the normal map bake to account for skewed UV islands, producing accurate tangent-space normals even where UVs are non-uniformly stretched.
Question 3: What does the 'Fresnel effect' govern in a PBR material, and how does it appear visually?
- It controls how transparent a material is at its center versus its edges
- It describes how reflectivity increases at grazing angles, making surfaces appear more mirror-like near their silhouettes (Correct answer)
- It defines the subsurface scattering radius for skin materials
- It determines how emissive materials glow under indirect lighting
Correct answer: It describes how reflectivity increases at grazing angles, making surfaces appear more mirror-like near their silhouettes
The Fresnel effect (described by Schlick's approximation in PBR) causes nearly all materials to become highly reflective at grazing angles, which is physically accurate behavior.
Question 4: When should you use a 'smart material' in Substance Painter versus creating a material from scratch?
- Smart materials should only be used for non-metallic surfaces
- Use a smart material when you want a preset collection of generator-driven layers (edge wear, dirt, etc.) that adapt to the mesh's baked maps (Correct answer)
- Smart materials are only available for objects with more than 1,000 polygons
- Use smart materials only when exporting for Unreal Engine
Correct answer: Use a smart material when you want a preset collection of generator-driven layers (edge wear, dirt, etc.) that adapt to the mesh's baked maps
Smart materials in Substance Painter are self-contained layer stacks with generators that reference baked maps (AO, curvature, position) to intelligently place dirt, wear, and other effects on the mesh.
Question 5: What is the key difference between 'hard edges' and 'smoothing groups' when preparing a mesh for normal map baking?
- Hard edges are only used in Maya while smoothing groups are only used in 3ds Max
- Hard edges and smoothing groups are different software representations of the same concept — edges where the shading normal transitions sharply (Correct answer)
- Hard edges affect geometry topology while smoothing groups only affect UV layout
- Smoothing groups define polygon material assignments, while hard edges define UV seam positions
Correct answer: Hard edges and smoothing groups are different software representations of the same concept — edges where the shading normal transitions sharply
Hard edges (in Maya/Blender) and smoothing groups (in 3ds Max) are equivalent concepts — both define where surface normals are averaged continuously vs. split sharply, and both must align with UV seams for correct baking.
Question 6: Which texture format preserves the most color information when used as a 16-bit file compared to an 8-bit PNG for gradient-heavy textures like height maps?
- JPEG 2000
- 16-bit TIFF or EXR (Correct answer)
- DDS with DXT5 compression
- Indexed 8-bit PNG
Correct answer: 16-bit TIFF or EXR
16-bit TIFF or EXR files store 65,536 discrete values per channel versus 256 in 8-bit, preserving smooth gradients in height maps without the visible banding that 8-bit files produce.
Question 7: What does 'roughness remapping' (also called roughness calibration) accomplish in a texturing pipeline?
- Converts metallic-roughness maps to specular-glossiness format
- Adjusts the input roughness range to match the response curve of a specific render engine's BRDF (Correct answer)
- Automatically generates roughness variation using procedural noise
- Bakes surface micro-scratches from a high-poly sculpt into a roughness texture
Correct answer: Adjusts the input roughness range to match the response curve of a specific render engine's BRDF
Roughness remapping rescales or curves the roughness values so that the perceived surface response matches the target renderer's BRDF, since different engines interpret the 0-1 range differently.
What is 'tri-planar mapping' and when is it most useful?