3D Texturing Case Studies & Practical Application 2 — Questions and Answers
Question 1: A game artist notices that a brick wall texture looks blurry at close range but sharp from a distance. What is the most likely cause?
- The texture resolution is too low for close-up viewing (Correct answer)
- The normal map is inverted
- Mipmapping is disabled in the engine
- The UV scale is too large
Correct answer: The texture resolution is too low for close-up viewing
Low texture resolution causes blurring at close range because there aren't enough texels per screen pixel.
Question 2: A film VFX artist is texturing a destroyed concrete pillar. Which workflow best captures realistic surface variation?
- Apply a single tileable concrete texture with uniform color
- Combine photogrammetry-derived diffuse maps with hand-painted edge damage (Correct answer)
- Use a procedural noise shader only
- Duplicate the base texture and offset the UVs
Correct answer: Combine photogrammetry-derived diffuse maps with hand-painted edge damage
Combining photogrammetry diffuse maps with hand-painted edge damage provides realistic base variation and believable wear patterns.
Question 3: During a product visualization project, a rendered leather handbag looks plastic despite having a roughness map. What should the artist investigate first?
- Increase the specular value in the shader
- Check whether the roughness map is connected to the correct channel in the PBR shader (Correct answer)
- Switch from metallic to specular workflow
- Add an emissive map to the material
Correct answer: Check whether the roughness map is connected to the correct channel in the PBR shader
If the roughness map is connected to the wrong channel, the renderer ignores it and falls back to a default smooth surface.
Question 4: A mobile game team needs to texture a 500-polygon character model while keeping draw calls low. What approach is most appropriate?
- Use a unique texture set per material zone
- Pack all texture regions onto a single atlas texture (Correct answer)
- Apply procedural materials at runtime
- Use cube maps for all reflective surfaces
Correct answer: Pack all texture regions onto a single atlas texture
A single texture atlas allows all material zones to share one draw call, minimizing GPU overhead on mobile hardware.
Question 5: A studio is converting an existing PBR metallic-roughness model for use in an older engine that requires specular-gloss textures. Which channel mapping is correct?
- Roughness → Glossiness (inverted), Metallic → Specular color (Correct answer)
- Roughness → Specular, Metallic → Glossiness
- Albedo → Specular, Roughness → Diffuse
- Normal → Glossiness, Albedo → Specular
Correct answer: Roughness → Glossiness (inverted), Metallic → Specular color
In specular-gloss workflow, glossiness is the inverse of roughness, and specular color is derived from the metallic mask applied to the albedo.
Question 6: An environment artist's stone floor shows visible tiling seams in the final render. What is the best fix that avoids replacing the texture?
- Reduce texture resolution to hide the pattern
- Use a stochastic texture sampling or histogram-preserving tiling node (Correct answer)
- Apply a solid color overlay
- Disable anisotropic filtering
Correct answer: Use a stochastic texture sampling or histogram-preserving tiling node
Stochastic or histogram-preserving tiling randomizes texture placement to break visible repeat patterns without changing the source texture.
Question 7: A character artist bakes a high-poly sculpt's details onto a low-poly mesh but gets shading artifacts along hard edges. What is the primary cause?
- The albedo map has incorrect gamma settings
- Smoothing groups or hard edges are not matching the bake cage splits (Correct answer)
- The metallic value is set too high
- The low-poly mesh has too many polygons
Correct answer: Smoothing groups or hard edges are not matching the bake cage splits
Mismatched smoothing groups and hard edges cause the baked normals to conflict with the mesh's own interpolated normals, creating artifacts.
A game artist notices that a brick wall texture looks blurry at close range but sharp from a distance.
What is the most likely cause?