unity-postprocess

Configure URP and HDRP post-processing effects on Unity VolumeProfiles.

2|Updated May 18, 2026
One-click install
npx skills add https://github.com/pcone-mm/NewFPG --skill unity-postprocess-pcone-mm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-postprocess
Source: https://github.com/pcone-mm/NewFPG/tree/main/.agents/skills/unity-skills/skills/postprocess
Command: npx skills add https://github.com/pcone-mm/NewFPG --skill unity-postprocess-pcone-mm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up post-processing in Unity's Scriptable Render Pipeline requires knowing which effects the active pipeline supports and the exact parameter names on each VolumeProfile override, which differ between URP and HDRP. This Skill removes that guesswork by listing supported effects, inspecting real parameter surfaces, and applying tuned settings directly. ## Core Features & Use Cases - Effect Management: List, add, inspect, and remove post-processing effect overrides on a VolumeProfile for the active SRP pipeline. - Dedicated Effect Tuning: Configure Bloom, Depth of Field, Tonemapping, Vignette, and Color Adjustments through purpose-built operations instead of guessing generic parameter names. - Pipeline-Aware Safety: Detects when SRP Core is not installed and returns a diagnostic stub, and restricts destructive removal operations to explicit approval modes. - Use Case: A user asks to add bloom and tonemapping to a URP scene; the Skill lists available effects, adds the overrides to the VolumeProfile, and sets intensity and threshold values. ## Quick Start Add a Bloom effect to my URP VolumeProfile and set its intensity to 1.5 with a threshold of 0.9.

Frequently Asked Questions about unity-postprocess

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

FAQPage Schema
How do I add post-processing effects to a URP VolumeProfile in Unity?

Use postprocess_add_effect to add an effect override to the VolumeProfile, then tune it with dedicated operations like postprocess_set_bloom or postprocess_set_tonemapping. Call postprocess_list_effects first to confirm the effect is supported by the active pipeline.

How do I configure bloom in Unity URP or HDRP?

Use postprocess_set_bloom to configure Bloom on a VolumeProfile override. Inspect the effect first with postprocess_get_effect to see the real parameter names, since URP and HDRP expose similar but not identical parameter surfaces.

Does this work with the old Post Processing Stack v2 package?

No. This module only supports modern SRP post-processing built on the Volume framework in URP and HDRP. It explicitly does not support PPv2 or the com.unity.postprocessing package.

Why do I get an error that SRP Core is not installed?

Every skill returns a diagnostic stub when neither URP nor HDRP is installed, since the module compiles against com.unity.render-pipelines.core. Install a scriptable render pipeline package in your Unity project to resolve it.

Why can't I remove a post-processing effect in Auto mode?

postprocess_remove_effect carries a Delete operation and is auto-forbidden in Approval and Auto modes. It only runs under Bypass mode or through a user-managed allowlist, as a safeguard against destructive changes.