unity-lighting-vfx

Guide Unity lighting modes, global illumination, and VFX Graph for URP/HDRP.

24|5|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/Nice-Wolf-Studio/unity-claude-skills --skill unity-lighting-vfx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-lighting-vfx
Source: https://github.com/Nice-Wolf-Studio/unity-claude-skills/tree/main/skills/unity-lighting-vfx
Command: npx skills add https://github.com/Nice-Wolf-Studio/unity-claude-skills --skill unity-lighting-vfx

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps you understand and implement advanced lighting techniques and visual effects in Unity, ensuring your game worlds look stunning and performant.

Core Features & Use Cases

  • Lighting Modes: Learn about Realtime, Baked, and Mixed lighting and when to use each.
  • Light Types: Configure Directional, Point, Spot, and Area lights for various scenarios.
  • Global Illumination: Implement Baked GI, Light Probes, and Adaptive Probe Volumes for realistic bounced light.
  • Visual Effects: Differentiate and utilize Particle System and VFX Graph for diverse visual effects.
  • Use Case: You need to create a realistic interior scene with soft, bounced lighting and dynamic shadows. This Skill guides you through setting up Mixed lights, Reflection Probes with Box Projection, and potentially APV for dynamic object lighting.

Quick Start

Use the unity-lighting-vfx skill to learn about the differences between Realtime, Baked, and Mixed lighting modes in Unity.

Frequently Asked Questions about unity-lighting-vfx

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is the difference between Realtime, Baked, and Mixed lighting modes in Unity?

Realtime lighting in Unity calculates light dynamically at runtime for moving objects, Baked lighting precomputes light into textures for static scenes to save performance, and Mixed lighting combines both for dynamic shadows with baked bounced light. Choosing the right mode balances visual fidelity against real-time rendering cost.

How do I set up Global Illumination and Light Probes for realistic bounced light in Unity?

To set up Global Illumination for realistic bounced light in Unity, configure Baked GI for static geometry and place Light Probes or Adaptive Probe Volumes throughout your scene. This allows dynamic objects to correctly sample and receive precomputed indirect lighting.

When should I use the VFX Graph instead of the built-in Particle System in Unity?

You should use the VFX Graph in Unity for complex, GPU-simulated particle effects that require high performance, while the built-in Particle System is better suited for simpler, CPU-based dynamic effects. VFX Graph scales better for massive particle counts in modern rendering pipelines.

Does this Unity lighting and VFX guidance apply to both URP and HDRP rendering pipelines?

Yes, this guidance addresses lighting and visual effects performance optimization for both the Universal Render Pipeline (URP) and the High Definition Render Pipeline (HDRP). It helps configure light types, modes, and effects appropriately across Unity's component-based architecture.

What's the best way to illuminate a realistic interior scene with soft shadows in Unity?

The best way to illuminate a realistic interior scene in Unity is to use Mixed lighting alongside Reflection Probes with Box Projection, and potentially Adaptive Probe Volumes for dynamic object lighting. This setup provides soft bounced light and accurate dynamic shadows.