All questions
Question 1
A model has a valid UV map and a material containing two Image Texture nodes. One image drives Base Color, while the other drives Roughness. In Texture Paint mode, brush strokes are being written to the roughness image even though the artist intends to paint color.
Which action most directly corrects the painting target without changing the UV layout?
- Make the Base Color Image Texture node and its image the active paint canvas. (correct answer)
- Connect the Roughness output to Base Color before beginning each paint stroke.
- Create a second UV map and assign it only to the Base Color texture.
- Switch the viewport to Solid shading and enable the Texture color display.
Explanation: When working in Blender's Texture Paint mode, the key concept to understand is the active paint canvas — Blender doesn't automatically know which of your multiple Image Texture nodes you intend to paint on. It paints to whichever image is currently designated as the active target, which is determined by which Image Texture node is selected (highlighted) in the Shader Editor, or which image is active in the Image Editor.
The fix here is straightforward: select the Base Color Image Texture node in the Shader Editor (or set its image as active in the Image Editor) so Blender directs brush strokes to that image. This is exactly what A describes, and it requires zero changes to your UV layout or node connections.
B is a workflow-breaking workaround — temporarily rewiring your shader connections just to paint would corrupt your material and require you to undo it after every stroke. That's not a correction; it's a chaotic workaround.
C introduces an unnecessary second UV map. The problem has nothing to do with UV layout — both textures already share a valid UV map. Adding a second one solves a problem that doesn't exist here and adds complexity.
D switching to Solid shading and enabling Texture display changes what you see in the viewport, but it doesn't change what Blender paints to. The active canvas remains the roughness image regardless of shading mode.
Study tip: On questions about Texture Paint targeting, always ask yourself: "Which node/image is active?" That single concept controls where paint goes, independent of shading, UVs, or node connections.
Question 2
To save texture space, an artist stacks the left and right sleeve UV islands exactly on top of one another. The artist then paints a badge on only the left sleeve in the 3D Viewport, but the badge also appears on the right sleeve.
What is the most appropriate change if the final design must keep the badge on only one sleeve?
- Disable X-axis paint symmetry while leaving the sleeve UV islands stacked.
- Separate the sleeve UV islands into unique texture space and repaint the badge. (correct answer)
- Increase brush spacing so fewer samples reach the opposite sleeve island.
- Reverse the normals of the sleeve that should not display the painted badge.
Explanation: When you stack UV islands on top of each other to save texture space, you're telling Blender that both surfaces should share the exact same pixel data. This is called UV overlapping, and it's a common optimization — but it comes with a critical trade-off: anything painted on one island is simultaneously painted on all islands occupying that same UV space. Understanding this cause-and-effect relationship is the key to answering questions like this one.
The only real fix is B — separating the sleeve UV islands into unique, non-overlapping regions of the texture and repainting the badge. Once each sleeve occupies its own distinct UV space, painting on one sleeve writes to different pixels than the other, giving you independent control over each surface.
A is tempting but misses the point entirely. X-axis symmetry mirrors brush strokes across the 3D object's axis, which is a separate system from UV layout. Even with symmetry disabled, overlapping UVs mean both sleeves still read from the same texture pixels — the badge would still appear on both.
C is a red herring. Brush spacing controls the distance between paint samples along a stroke and has no mechanism for distinguishing which UV island receives paint. Overlapping islands ignore spacing completely.
D is incorrect because reversing normals affects surface shading and face orientation, not texture data. A flipped normal doesn't prevent a face from displaying the texture it's UV-mapped to.
As a study tip, whenever a Blender question involves unwanted paint or texture appearing on multiple surfaces, immediately ask yourself: are those surfaces sharing UV space? Overlapping UVs are almost always the culprit.
Question 3
A low-resolution image is assigned to a large UV island covering most of a prop. Painted lettering looks blocky when viewed closely. The artist subdivides the mesh several times, but the lettering remains blocky.
Which change most directly increases the available detail for future painted lettering?
- Change the material roughness while retaining the original image resolution.
- Add more loop cuts around the lettering while retaining the original paint image.
- Increase the brush strength while keeping the same image and UV island size.
- Use a higher-resolution paint image and repaint or transfer the lettering onto it. (correct answer)
Explanation: When working with texture painting in Blender, it's essential to understand that detail lives in the image, not the mesh. Subdividing geometry refines how 3D surfaces are shaped, but painted textures are stored as pixel data in an image file. No matter how dense your mesh becomes, the texture's resolution is a fixed ceiling on visual detail.
This is exactly why D is correct. Switching to a higher-resolution paint image — for example, jumping from 512×512 to 2048×2048 — dramatically increases the pixel budget available for crisp lettering. More pixels per UV island means finer brushstrokes and sharper edges. Repainting or baking/transferring the old lettering onto the new canvas preserves the work while unlocking that extra detail.
A is a trap because roughness controls how light scatters off a surface, not how much detail a texture can hold. Adjusting roughness won't add a single pixel to your image.
B describes a common misconception: adding loop cuts increases polygon count, but the UV island still maps to the same low-resolution image. More geometry cannot conjure pixels that don't exist in the texture file.
C confuses brush strength — which controls paint opacity and intensity — with image resolution. A stronger brushstroke on a low-resolution canvas still produces blocky, coarse results.
The key takeaway: whenever a question describes blocky or blurry painted detail, immediately think about image resolution and UV density. Mesh topology is irrelevant to texture sharpness — the fix is always in the image itself. Remember the phrase: detail is stored in pixels, not polygons.
Question 4
An RGBA image is used for a decal material. In Texture Paint, an artist uses an erase-alpha blend mode and confirms in the Image Editor that the painted region has lower alpha. On the model, however, the region still appears fully opaque.
Which additional setup is most likely required for the erased alpha to affect the material's visible opacity?
- Connect the image alpha to the shader's roughness input and set the texture interpolation to Closest.
- Connect the image color to the shader's normal input and set the brush blend mode back to Mix.
- Connect the image alpha to the shader's alpha input and configure the material to display transparency. (correct answer)
- Connect the image color to the shader's emission input and set the material blend mode to Opaque.
Explanation: When working with transparency in Blender, you need to understand that painting alpha data into a texture is only half the job — the material itself must be configured to actually use that alpha information.
In this scenario, the artist has correctly painted lower alpha values into the RGBA image using the Erase Alpha blend mode, which is confirmed in the Image Editor. The missing piece is the material pipeline: if the image's alpha channel isn't connected to the shader's Alpha input, and the material's blend mode isn't set to handle transparency (e.g., Alpha Blend or Alpha Clip), Blender will simply ignore the alpha data entirely and render the surface as fully opaque. That's exactly what option C addresses — wiring the image alpha to the shader's alpha input and enabling transparency on the material. This is the correct and complete solution.
Option A is a trap because roughness controls surface specularity, not visibility. Routing alpha to roughness would only distort surface highlights, and Closest interpolation has no bearing on opacity behavior.
Option B is a red herring — connecting color to the normal input would corrupt surface shading by misusing color data as directional vectors, and resetting the brush blend mode doesn't affect what's already painted.
Option D compounds two errors: emission inputs have nothing to do with transparency, and setting the blend mode to Opaque actively prevents any transparency from rendering, which is the opposite of what's needed.
A good study rule: in Blender, transparency requires three things to align — an RGBA texture, an alpha-to-Alpha-input connection in the shader, and a non-opaque material blend mode. If any one of these is missing, the surface stays solid.
Question 5
An artist creates a generated image inside Blender, paints it, and saves the .blend file. After reopening the project, the generated image is blank because its edited image data was not stored. The artist wants the texture to travel inside the project rather than depend on a separate image file.
Which workflow most directly satisfies that requirement?
- Pack the painted image into the .blend file, and then save the project again. (correct answer)
- Save the startup file after closing the Image Editor and Texture Paint workspace.
- Apply the object's scale, and then save the material as a reusable asset.
- Bake the object's transforms, and then enable Auto Save for the .blend file.
Explanation: Whenever you see a question about image data persistence in Blender, focus on the distinction between image data and file references. Generated or painted images exist only in memory until you explicitly tell Blender to store them — simply saving the .blend file is not enough, because Blender treats unpacked images as external dependencies that must be managed separately.
Packing is Blender's built-in mechanism for embedding image data directly inside the .blend file. When you pack a painted image (Image menu → Pack), the pixel data is stored within the file itself, so no external file is needed. The next time you open the project, the texture is fully intact and self-contained. That's exactly what answer A describes, making it the correct workflow.
Answer B is a trap because saving the startup file only affects Blender's default scene on launch — it has no effect on packing or preserving image data in your current project. Answer C misdirects you toward scale application and asset libraries, which are useful for mesh and material reuse but do nothing to embed or protect painted pixel data. Answer D confuses two unrelated operations: baking transforms applies object scale to mesh data, and Auto Save simply creates periodic .blend backups — neither action packs image data into the file.
A useful rule of thumb: if an image in Blender shows a small asterisk (*) next to its name in the header, it has unsaved changes. Before closing any project with painted or generated textures, always pack and then save — that two-step habit ensures your artwork travels with the file.
Question 6
While painting the outside of a folded cloth mesh, a stroke also marks another surface hidden behind the visible fold. Both surfaces face generally toward the viewer, so rejecting only back-facing polygons would not isolate the front fold.
Which Texture Paint option is most directly intended to prevent the hidden surface from receiving the projected stroke?
- Enable X Mirror so the stroke is duplicated only across the object's local axis.
- Enable Occlude so visible geometry blocks painting onto surfaces located behind it. (correct answer)
- Disable Normal Falloff so surfaces at steep angles receive the same brush strength.
- Increase Bleed so the stroke extends farther beyond the visible UV island boundary.
Explanation: When painting on a 3D mesh in Blender's Texture Paint mode, one of the trickiest challenges is preventing brush strokes from "passing through" the visible surface and marking geometry hidden behind it. This is fundamentally a visibility problem — you want painting to respect what the camera actually sees, not just which polygons face forward.
The Occlude option (B) solves this directly. When enabled, Blender uses the depth buffer to determine which surfaces are occluded — meaning blocked by closer geometry. A stroke on the front fold cannot reach the rear fold because the front geometry sits between the brush and the hidden surface. This is precisely the scenario described: two forward-facing surfaces where one hides behind the other.
A is wrong because X Mirror is a symmetry tool — it duplicates strokes across the object's local X axis. It has no mechanism for detecting depth or blocking paint on hidden surfaces; it would actually add more strokes, not fewer.
C is wrong because Normal Falloff controls how brush strength fades based on surface angle relative to the view. Disabling it makes oblique surfaces receive full strength, which affects intensity — not whether a hidden surface gets painted at all.
D is wrong because Bleed extends paint beyond UV island borders to prevent seam artifacts during rendering. It deals with UV space boundary behavior, not 3D spatial occlusion of hidden geometry.
As a study tip, when a question describes geometry hidden behind other geometry, that's your signal to think about occlusion and depth — not angle, symmetry, or UV layout.
Question 7
A single object contains a helmet, visor, and chin guard. Their UV islands do not overlap. The artist wants to paint only the visor while brushing in the 3D Viewport, without separating the object or modifying its UV layout.
Which setup most directly restricts strokes to the visor geometry?
- Enable face selection masking for painting, and select only the visor faces. (correct answer)
- Enable paint symmetry, and place the visor across the object's local X axis.
- Hide the visor's UV island, and leave the helmet and chin guard islands visible.
- Select the visor material node, and temporarily disconnect the material output.
Explanation: When working in Blender's 3D Viewport with texture painting, you need to think about geometry masking — how do you tell Blender's brush exactly which faces it's allowed to touch? This question tests whether you understand the tools designed specifically for that purpose.
Face selection masking is the direct answer. When you enable it (the face icon in the header while in Texture Paint mode) and select only the visor faces, Blender restricts brush strokes exclusively to those selected faces — even if your cursor accidentally drifts over the helmet or chin guard. This is precisely the tool designed for isolating paintable geometry without altering UVs or mesh structure, making A the correct setup.
The distractors each represent a different kind of misunderstanding. B is wrong because paint symmetry mirrors strokes across an axis — it's about duplicating brush input, not restricting it. Placing the visor "across the X axis" doesn't create any masking whatsoever. C has the logic backwards: hiding a UV island in the UV Editor removes it from editing there, but it does not prevent the 3D Viewport brush from painting onto those faces. UV visibility and paint masking are separate systems. D is plausible-sounding but incorrect — disconnecting a material output affects rendering and viewport shading, not where texture paint strokes are applied. The brush doesn't read material graph connections as a mask.
A good study habit here: when Blender questions involve restricting or isolating an operation, look for the dedicated masking feature in that specific mode rather than workarounds from other editors or systems.
Question 8
An artist needs to paint a rectangular logo onto a curved object while interactively positioning, rotating, and scaling the logo in the viewport. The logo should act like a projected guide rather than repeat according to the object's UV coordinates.
Which brush texture mapping approach best matches this workflow?
- Use Random mapping and reduce brush spacing until the logo becomes stationary.
- Use Tiled mapping and adjust UV island scale until one tile covers the model.
- Use Stencil mapping and transform the stencil over the model before painting. (correct answer)
- Use Generated coordinates and apply object scale before every projected stroke.
Explanation: When a question describes interactively repositioning a texture over a model in the viewport — like placing a logo as a projected overlay — you should immediately think about which texture mapping mode gives you real-time, screen-space control rather than tying the texture to the mesh's UV structure.
Stencil mapping is built for exactly this scenario. It displays your texture as a movable overlay in the viewport, and you reposition, rotate, and scale it using mouse shortcuts (right-click drag, Shift+right-click, Ctrl+right-click) before or during painting. The paint only applies where your brush strokes fall within the stencil's bounds, so the logo acts as a projected guide independent of the object's UVs. That makes C the correct answer.
A is wrong because Random mapping randomizes brush placement with every stroke — reducing spacing just increases density, it never creates a stationary, controlled image. B is tempting if you're thinking about UV-based workflows, but Tiled mapping tiles the texture across UV space and depends entirely on how your UV islands are laid out. Scaling one tile to cover the model is imprecise and offers no interactive viewport repositioning. D invents a non-existent workflow — Generated coordinates are used for procedural texture generation, not for interactively projecting a paintable stencil; "applying object scale" before each stroke is not a real Blender painting technique.
A helpful tip: whenever an exam question emphasizes interactive viewport control of a texture's position during painting, stencil mapping is almost always the answer. It's the only mode designed for that painter's "hold and drag" workflow.
Question 9
After painting a character texture, thin dark lines become visible along UV seams when the model is viewed from a distance. The UV islands have almost no space between them, and painted color ends exactly at each island boundary.
Which workflow best addresses the seam artifacts while reducing the chance of color leaking between unrelated islands?
- Repack with larger island margins, then use enough paint bleed to extend color beyond island edges. (correct answer)
- Repack with smaller island margins, then set paint bleed to zero at every island edge.
- Subdivide the mesh uniformly, then keep the original UV packing and painted image.
- Mark every UV seam as Sharp, then recalculate the model's exterior normals.
Explanation: When texture seams appear as dark lines at a distance, you're dealing with a mipmap sampling problem — the GPU blends pixels from neighboring UV regions, and if painted color stops exactly at the island edge, the seam "bleeds through" visually. Questions like this test whether you understand both the spacing side (island margins) and the painting side (bleed) of UV workflow together.
The fix in answer A works on both fronts simultaneously. Larger island margins give the GPU breathing room between UV islands, so neighboring islands don't contaminate each other during mipmap filtering. Paint bleed (also called "bleeding" in Blender's bake or paint settings) extends the painted color slightly beyond each island's boundary into the empty margin space — so instead of a hard color cutoff at the seam edge, the GPU samples a safe continuation of the correct color. Together, these two steps eliminate the dark-line artifact without introducing cross-island color contamination, because the margins keep unrelated islands physically separated.
Answer B is the opposite of what you need — smaller margins worsen proximity between islands, and setting bleed to zero guarantees the hard edge that causes the artifact in the first place. Answer C is a red herring; subdividing the mesh doesn't change how UV islands are packed or how texels are sampled at seams, so the artifact persists. Answer D confuses shading normals with UV texture sampling — marking seams as Sharp affects edge smoothing, not how the texture renderer handles island boundaries.
A useful rule of thumb: margins handle space, bleed handles edge coverage — you almost always need both when eliminating seam artifacts.
Question 10
An object has been rotated in Object Mode, but its rotation has not been applied. The artist enables X-axis symmetry in Texture Paint and expects the mirrored stroke to appear across the scene's global X plane.
Where will Blender normally place the mirrored stroke?
- Across the current screen's vertical centerline, regardless of the view direction.
- Across the scene's global X plane, regardless of the object's unapplied rotation.
- Across the active UV island's horizontal midpoint, regardless of object orientation.
- Across the object's local X symmetry plane, which may be rotated relative to global X. (correct answer)
Explanation: When working with symmetry tools in Blender, it's essential to understand the difference between local space and global space — and how unapplied transforms affect each.
Blender's Texture Paint symmetry operates in the object's local coordinate space, not the scene's global space. When you rotate an object in Object Mode without applying that rotation (Ctrl+A → Apply Rotation), the object's local axes rotate with it, while the mesh data internally remains unchanged. So when you enable X-axis symmetry, Blender mirrors strokes across the object's local X plane — which is now tilted relative to global X. That's exactly what D describes, making it the correct answer.
A is wrong because Blender's symmetry has nothing to do with screen space or the viewport's visual centerline. Screen-space symmetry doesn't exist in this context — strokes aren't mirrored based on where things appear on your monitor.
B is the most tempting distractor. You might assume that enabling "X symmetry" means global X, but Blender doesn't use global space here. The object's unapplied rotation absolutely matters, because local and global X only align when rotation is zeroed out or applied.
C is wrong because UV island midpoints are a UV-space concept. Texture Paint symmetry operates in 3D object space, not the 2D UV layout — those are separate systems entirely.
The key study tip: whenever a Blender question involves symmetry, mirroring, or axis-based tools, always ask yourself "has the transform been applied?" Unapplied rotations quietly shift local axes, causing results that seem broken when viewed globally.