All Practice Exams

100+ Free Unity Certified Professional: Artist Practice Questions

Pass your Unity Certified Professional: Artist exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

An explosion effect must spawn a burst of debris all at once rather than a continuous stream. In the Emission module, which feature produces a sudden batch of particles at a specific time?

A
B
C
D
to track
2026 Statistics

Key Facts: Unity Certified Professional: Artist Exam

~$350

Exam Fee (USD)

Unity / Pearson VUE

500/700

Passing Score (scaled, about 70%)

Unity

105 min

Exam Duration

Unity Certifications FAQ

~60

Question Count

Unity (scenario-based multiple choice)

Unity 2022 LTS

Exam Version

Unity

3 years

Credential Validity

Unity (retake to renew)

Unity Certified Professional: Artist is a professional-tier real-time 3D art exam delivered through Pearson VUE on Unity 2022 LTS. It costs roughly $350, runs about 60 scenario-based multiple-choice questions in 105 minutes, and needs a scaled score near 500 of 700 (about 70%) to pass. It covers rendering and Shader Graph, lighting and global illumination, particles and post-processing, 2D assets, animation and cinematics with Timeline and Cinemachine, and team production workflows. The credential is valid for three years.

Sample Unity Certified Professional: Artist Practice Questions

Try these sample questions to test your Unity Certified Professional: Artist exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In the Universal Render Pipeline (URP), an artist creates a custom material in Shader Graph that should react to scene lighting and cast and receive light like the standard Lit shader. Which Master Stack output node configuration must the graph use for this behavior?
A.Set the graph's Material to Unlit in Graph Settings
B.Use the Sprite Lit Master node
C.Set the graph's Material to Lit so the Fragment block exposes Base Color, Metallic, Smoothness, and Normal
D.Use a Custom Function node wired directly to Vertex Position
Explanation: In URP Shader Graph the target's Material property in Graph Settings controls which Master Stack blocks appear. Choosing Lit exposes physically based blocks such as Base Color, Metallic, Smoothness, Normal, and Emission, so the shader is lit by the scene and participates in lighting like the URP Lit shader.
2A technical artist wants a Shader Graph material to fade out smoothly based on the camera's distance. Which node provides the distance between the rendered fragment and the camera so it can drive an alpha gradient?
A.Screen Position node
B.Camera node combined with a Distance or subtraction from Position (world)
C.Object node
D.Fresnel Effect node
Explanation: The Camera node exposes the camera's world Position and Direction. By subtracting the camera Position from the fragment's world Position and taking the Length, or by feeding both into a Distance node, the graph computes camera-to-fragment distance, which can remap into an alpha fade.
3An artist needs a material's surface to appear transparent so background geometry shows through with proper blending. In the URP Lit Shader Graph, which Graph Setting controls this?
A.Set the Render Face to Back
B.Lower the Smoothness value to 0
C.Enable Alpha Clipping only
D.Set Surface Type to Transparent
Explanation: The Surface Type setting in URP Shader Graph switches between Opaque and Transparent rendering. Transparent enables blend modes (such as Alpha) so the material's alpha controls how much background shows through, and moves the object into the transparent render queue.
4A material's Metallic value is set to 1.0 and Smoothness to 0.9 in a URP Lit material. What appearance does this most closely produce on a 3D object?
A.A rough, matte plastic surface
B.A polished, mirror-like metal that reflects the environment sharply
C.A fully transparent glass surface
D.An emissive, self-illuminated surface
Explanation: In a physically based metallic workflow, a high Metallic value makes the surface treat its base color as specular reflectance like a conductor, and a high Smoothness produces a tight, sharp specular highlight and clear environment reflections. Together they read as polished metal.
5An artist wants several hundred props in a URP scene to render with minimal CPU overhead while each keeps its own material instance with different property values. Which URP feature is designed to batch these draw calls when they share the same shader?
A.Static batching
B.The SRP Batcher
C.Dynamic batching
D.Occlusion culling
Explanation: The SRP Batcher reduces CPU render-loop cost by persisting per-material constant buffers on the GPU and batching draw calls that use the same shader variant, even when material property values differ. It is the primary draw-call optimization in URP and HDRP.
6A normal map imported for use in a Unity material renders incorrectly, producing wrong-looking lighting on the surface. Which texture import setting most likely needs to be corrected?
A.Change Wrap Mode to Clamp
B.Disable Generate Mip Maps
C.Set the Texture Type to Normal map
D.Set Filter Mode to Point
Explanation: When a texture is intended as a normal map, its Texture Type must be set to Normal map in the import settings. This tells Unity to treat it as a tangent-space normal map (and to decode it correctly), so per-pixel normals perturb lighting accurately instead of being sampled as plain color.
7An artist needs to author one Shader Graph that compiles correctly in both URP and HDRP. Which Shader Graph node is explicitly defined per render pipeline and may return black if used in a pipeline that does not implement it?
A.Multiply node
B.Baked GI node
C.Lerp node
D.Sample Texture 2D node
Explanation: The Baked GI node's behavior is defined by each Scriptable Render Pipeline rather than by Shader Graph itself. If a pipeline does not define it, the node returns 0 (black), so artists must verify pipeline-specific nodes in both URP and HDRP before production.
8To give a Shader Graph property a value that an artist can tweak per-material in the Inspector and animate at runtime via script, what must the artist do with that property?
A.Place the property inside a Sub Graph only
B.Convert the property to a Constant node
C.Mark the property as Exposed in the Blackboard
D.Set the property's precision to Half
Explanation: Properties created in the Shader Graph Blackboard have an Exposed flag. When exposed, the property appears in the material Inspector and gets a reference name that scripts can use with material.SetFloat, SetColor, or SetVector to drive it at runtime.
9An artist wants a glowing emissive material to actually contribute light to nearby static geometry in a baked lighting setup. Besides setting an Emission color above zero, what must be enabled for the emission to influence the lightmap bake?
A.The object's Cast Shadows must be set to Off
B.The material's Render Queue must be set to Transparent
C.GPU Instancing must be enabled on the material
D.The material's Global Illumination must be set to Baked (contribute global illumination)
Explanation: For emission to bleed into baked lighting, the material's Emission Global Illumination flag must be set to Baked, and the emitter must be marked Contribute GI / static. Only then does the lightmapper treat the emissive surface as an indirect light source during the bake.
10In HDRP, an artist wants a material that shows a thin translucent surface like wax or skin where light scatters beneath the surface. Which HDRP Lit material feature addresses this?
A.Detail Map blending
B.Parallax Occlusion Mapping
C.Subsurface Scattering with a Diffusion Profile
D.Decal Layers
Explanation: HDRP supports Subsurface Scattering for materials like skin, wax, and foliage. The artist sets the Material Type to Subsurface Scattering (or Translucent) and assigns a Diffusion Profile that defines how far and what color light scatters under the surface.

About the Unity Certified Professional: Artist Exam

The Unity Certified Professional: Artist credential validates that a real-time 3D artist can execute the artistic vision of a production project with a mix of artistic and technical skill. Built on Unity 2022 LTS and delivered through Pearson VUE, the exam covers rendering 3D objects with materials and Shader Graph in URP and HDRP, lighting objects and environments with baked and real-time global illumination, working with particles, post-processing effects, and 2D assets, prototyping application elements, working with animation and cinematics through Timeline and Cinemachine, and collaborating within software development teams. It is aimed at professionals with two to four years of experience in roles such as 3D Artist, Environment Artist, Level Designer, and Technical Artist, and it is more advanced than the Associate: Artist certification. Holding a current Unity Certified Professional credential is also a prerequisite for pursuing Unity Certified Instructor status.

Questions

60 scored questions

Time Limit

105 minutes

Passing Score

500 of 700 (scaled, about 70%)

Exam Fee

~$350 (Unity Technologies (delivered by Pearson VUE))

Unity Certified Professional: Artist Exam Content Outline

20-25%

Rendering 3D objects

Author materials and shaders with Shader Graph across URP and HDRP, use the PBR metallic/smoothness workflow and normal maps, control surface type, alpha clipping, and face culling, and apply material variants, the SRP Batcher, and GPU instancing for efficient rendering.

20-25%

Lighting objects and environments

Configure real-time, mixed, and baked lights; bake global illumination with the Progressive Lightmapper; set up reflection probes, light probes, and Adaptive Probe Volumes; tune lightmap resolution, shadow bias, area lights, fog, and ambient sources; and validate with lighting debug draw modes.

15-20%

Working with animation and cinematics

Set up humanoid rigs and retargeting with Avatars, build Animator blend trees and layered animation with Avatar Masks, apply Root Motion and Animation Events, and choreograph cutscenes using Timeline tracks, Signals, and Cinemachine virtual cameras with cuts, blends, and procedural shake.

15-20%

Optimization of performance and platforms

Reduce cost with LOD Groups, texture atlasing, draw-call batching, occlusion culling, layer cull distances, normal-map baking from high to low poly, skin-weight limits, and per-platform texture compression, and diagnose bottlenecks with the Profiler, Frame Debugger, and Game view statistics.

10-15%

Working with particles and effects

Build effects with the built-in Particle System modules and the GPU-driven Visual Effect Graph, and apply post-processing via the Volume framework including bloom with HDR emission, vignette, color grading, and LUTs.

5-10%

Working with 2D assets

Slice sprite sheets in the Sprite Editor, apply 9-slicing and Sprite Atlases, manage sorting layers and order in layer, preserve pixel-art crispness with point filtering, and light sprites using the URP 2D renderer.

5-10%

Working in software development teams

Use Prefabs, Prefab Variants, and nested Prefabs, manage version control with text serialization, .meta GUIDs, gitignore rules, and Git LFS, share data with ScriptableObjects, enforce import presets, and deliver content with Addressables.

How to Pass the Unity Certified Professional: Artist Exam

What You Need to Know

  • Passing score: 500 of 700 (scaled, about 70%)
  • Exam length: 60 questions
  • Time limit: 105 minutes
  • Exam fee: ~$350

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Unity Certified Professional: Artist Study Tips from Top Performers

1Build a small URP and an HDRP scene and author the same Shader Graph in both; know which nodes (like Baked GI) are pipeline-defined and can return black if unsupported.
2Practice a full lighting bake end to end: mark objects Contribute GI, generate clean lightmap UVs, set Mixed lights, and add reflection probes, light probes, and Adaptive Probe Volumes for dynamic objects.
3Choreograph a cutscene with Timeline and Cinemachine: create virtual cameras, sequence Cinemachine Shot clips, cut by adjacency and blend by overlap, and fire gameplay with Signals and Animation Events.
4Drill optimization tradeoffs: LOD Groups, texture atlasing, the SRP Batcher versus GPU instancing versus static batching, occlusion culling, and per-platform texture compression like ASTC on mobile.
5Get comfortable diagnosing problems in the Profiler and Frame Debugger, including why a draw call broke its batch and how overdraw from transparent particles inflates GPU cost.
6Review team workflows: Prefab Variants and nested Prefabs, Force Text serialization and .meta GUIDs for mergeable version control, ScriptableObjects for shared data, and Addressables for content delivery.

Frequently Asked Questions

What are the current exam facts for Unity Certified Professional: Artist?

Unity delivers the Professional: Artist exam through Pearson VUE on Unity 2022 LTS. It costs roughly $350, presents about 60 scenario-based multiple-choice questions, allows 105 minutes, and requires a scaled score near 500 of 700 (about 70%) to pass.

How is the Professional: Artist exam different from the Associate: Artist exam?

The Professional tier targets artists with two to four years of experience and goes deeper into technical art: Shader Graph in URP and HDRP, global illumination baking, reflection and light probes, Cinemachine and Timeline, and production optimization. The Associate tier validates job-ready foundational skills.

What topics does the exam cover?

Expect questions on rendering 3D objects, lighting objects and environments, working with particles and effects, prototyping application elements, working with 2D assets, working with animation, and working in software development teams.

How long is the certification valid?

Unity certifications are valid for three years from the certification date. To maintain certified status afterward, you must retake the exam.

Does this certification help me become a Unity Certified Instructor?

Yes. Holding a current Unity Certified Professional credential, such as Professional: Artist, is a prerequisite for pursuing Unity Certified Instructor status.

Do I need to take the Associate exam first?

No exam prerequisite is required. Unity instead recommends about two or more years of practical experience implementing and lighting 3D art and environments in Unity for real-time applications across PC, mobile, and XR.