3D Texturing Case Studies & Practical Application 4 — Questions and Answers
Question 1: A texture artist is handed UV maps from a modeler where multiple islands overlap in the 0-1 space. What problem will this cause during baking?
- The texture will render at lower resolution
- Overlapping UVs will cause incorrect shadow and normal data to bake onto multiple faces simultaneously (Correct answer)
- The texture file size will increase
- The model will lose smoothing group information
Correct answer: Overlapping UVs will cause incorrect shadow and normal data to bake onto multiple faces simultaneously
Overlapping UV islands share the same texel space, so baking writes data from multiple surfaces onto the same pixels, corrupting the result.
Question 2: An artist is building a stylized cartoon character and wants outlines to appear on the texture rather than as a post-process effect. Which texturing approach achieves this?
- Hand-paint dark outline strokes directly into the albedo texture along silhouette edges (Correct answer)
- Apply a Fresnel-based rim light in the shader
- Use a normal map to push geometry outward
- Enable screen-space ambient occlusion
Correct answer: Hand-paint dark outline strokes directly into the albedo texture along silhouette edges
Painting outlines directly into the albedo is the classic stylized texturing technique, making the outline part of the surface rather than a view-dependent shader effect.
Question 3: A VR developer needs textures on hands to look sharp at arm's length (~0.5m from the camera). At that distance, what texture resolution is typically required for 2K VR headset display?
- 256×256
- 512×512
- 2048×2048 (Correct answer)
- 4096×4096
Correct answer: 2048×2048
At typical arm's length in a 2K-per-eye VR headset, a 2048×2048 texture provides sufficient texel density to appear sharp without visible pixelation.
Question 4: A lead artist finds that a foliage material using alpha-tested transparency causes overdraw performance problems. What technique reduces this cost while maintaining the silhouette?
- Switch to alpha-blend mode
- Use dithered transparency (alpha-to-coverage) with MSAA (Correct answer)
- Remove the alpha channel entirely
- Reduce the polygon count of the leaf cards
Correct answer: Use dithered transparency (alpha-to-coverage) with MSAA
Alpha-to-coverage converts transparency to a dithered pattern resolved by MSAA, avoiding the overdraw sorting issues of alpha-blend while keeping crisp silhouettes.
Question 5: A studio textures a crowd character that will appear in the background of many shots. Which approach maximizes visual variety while minimizing unique texture work?
- Create a fully unique texture set for each crowd member
- Design a modular texture atlas with interchangeable color variation masks and tinting in the shader (Correct answer)
- Apply a single flat color to all crowd members
- Use photographic textures at full resolution per character
Correct answer: Design a modular texture atlas with interchangeable color variation masks and tinting in the shader
A modular atlas with shader-driven color tinting lets artists reskin background characters cheaply without painting new textures for each individual.
Question 6: A texture artist is asked to create a wet asphalt material that transitions from dry to wet in real time based on a rainfall parameter. Which texture channels are most important to animate or blend?
- Albedo darkness and roughness decrease to simulate water absorption and surface sheen (Correct answer)
- Emissive intensity and metallic value
- Normal map intensity and UV offset
- Ambient occlusion and displacement map strength
Correct answer: Albedo darkness and roughness decrease to simulate water absorption and surface sheen
Wet asphalt darkens (albedo) and becomes smoother/glossier (lower roughness) — blending these two channels based on a wetness parameter realistically simulates rainfall.
Question 7: After exporting a normal map from ZBrush, an artist notices that concave areas appear convex in the renderer. What is the fix?
- Increase the normal map resolution
- Flip the green (Y) channel of the normal map to match the renderer's handedness convention (Correct answer)
- Rebake with a larger cage offset
- Switch from 16-bit to 8-bit export
Correct answer: Flip the green (Y) channel of the normal map to match the renderer's handedness convention
Different applications use OpenGL (+Y up) or DirectX (-Y up) normal map conventions; inverting the green channel swaps between them to correct inverted depth perception.
A texture artist is handed UV maps from a modeler where multiple islands overlap in the 0-1 space.
What problem will this cause during baking?