Game Art Game Art MCQ 5 — Questions and Answers
Question 1: What is 'skinning' in 3D character art?
- Applying a texture to a character model
- Binding mesh vertices to skeleton bones with weighted influences (Correct answer)
- Generating hair geometry from a scalp mesh
- Baking a high-poly character's detail onto a low-poly version
Correct answer: Binding mesh vertices to skeleton bones with weighted influences
Skinning (vertex weighting) assigns each mesh vertex influence values to one or more bones so the mesh deforms smoothly as the skeleton moves.
Question 2: What distinguishes a roughness-metalness PBR workflow from a specular-glossiness workflow?
- Roughness-metalness uses three separate texture maps; specular-glossiness uses one
- Roughness-metalness separates conductors via a binary metalness mask; specular-glossiness defines F0 directly in the specular map (Correct answer)
- Only specular-glossiness supports normal maps
- Roughness-metalness cannot represent non-metallic surfaces
Correct answer: Roughness-metalness separates conductors via a binary metalness mask; specular-glossiness defines F0 directly in the specular map
The metalness workflow uses a grayscale mask to choose between dielectric and conductor BRDF behavior, while spec-gloss encodes the actual specular reflectance color.
Question 3: Why is it important to keep a game character's mesh symmetrical during the initial modeling phase?
- Symmetrical meshes require no UV unwrapping
- It allows artists to work on one half and mirror it, saving time and ensuring consistent edge loops for rigging (Correct answer)
- Game engines only support symmetrical meshes
- It automatically generates LODs
Correct answer: It allows artists to work on one half and mirror it, saving time and ensuring consistent edge loops for rigging
Modeling one side and mirroring maintains perfectly matching topology, which is critical for clean deformation when the rig is applied.
Question 4: What is 'vertex color' used for in game art pipelines?
- Defining the number of UV channels
- Storing per-vertex data such as blend masks, AO, or foliage stiffness directly in the mesh (Correct answer)
- Setting the resolution of a texture atlas
- Controlling the frame rate of animations
Correct answer: Storing per-vertex data such as blend masks, AO, or foliage stiffness directly in the mesh
Vertex colors bake per-vertex RGBA data into the mesh itself, used by shaders for blending terrain layers, tinting, or physics parameters like wind stiffness.
Question 5: What is the function of a 'morph target' (also called a blend shape) in character animation?
- It switches between LOD levels based on distance
- It stores an alternate vertex position state that can be blended to drive facial expressions or secondary deformations (Correct answer)
- It compresses animation keyframes at export
- It assigns skin weights automatically using proximity
Correct answer: It stores an alternate vertex position state that can be blended to drive facial expressions or secondary deformations
Morph targets define a delta mesh where vertices are offset from rest pose; blending between them drives expressions, lip sync, or corrective shapes.
Question 6: In pixel art, what technique involves placing colored pixels at the boundary of two regions to create the illusion of a smoother edge?
- Dithering (Correct answer)
- Anti-aliasing
- Selective outlining
- Sub-pixel rendering
Correct answer: Dithering
Dithering uses a checkerboard or gradient pattern of alternating pixels to blend two colors and simulate intermediate tones within a limited palette.
Question 7: What is the purpose of a 'cage' in the high-to-low poly baking process?
- A helper geometry that defines the UV layout of the low-poly mesh
- An inflated version of the low-poly mesh used to project rays outward onto the high-poly for accurate baking (Correct answer)
- A rig proxy used to speed up skinning calculations
- A collision hull generated automatically from the low-poly mesh
Correct answer: An inflated version of the low-poly mesh used to project rays outward onto the high-poly for accurate baking
The cage is an offset shell around the low-poly mesh; rays are cast from the cage surface inward to sample the high-poly correctly and avoid self-intersection artifacts.
What is 'skinning' in 3D character art?