stylized-rendering

Design stylized game rendering pipelines with toon lighting and outlines.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/Firzus/agent-skills --skill stylized-rendering
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stylized-rendering
Source: https://github.com/Firzus/agent-skills/tree/main/skills/game/stylized-rendering
Command: npx skills add https://github.com/Firzus/agent-skills --skill stylized-rendering

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps you build and debug non-photorealistic game rendering when characters look flat, uncanny, or inconsistent across lighting, outlines, and materials. It gives you a practical blueprint for turning stylized art direction into stable shader logic and authored control data.

Core Features & Use Cases

  • Stylized lighting: Implements half-lambert, ramp-based lighting, tinted shadows, ambient lift, and received-shadow stylization.
  • Character rendering: Covers face shadow SDF maps, eye and brow visibility through hair, anisotropic hair highlights, and MatCap-based sheen.
  • Outline systems: Explains inverted-hull, smoothed-normal, post-process edge, and ink-style outline techniques for readable silhouettes.
  • Engine mapping: Maps the workflow to Unity 6 URP/HDRP and UE5 implementation patterns, including render passes and custom shading models.
  • Troubleshooting: Identifies common failure modes like blotchy faces, seam-splitting outlines, black shadows, and tonemap clashes.

Quick Start

Ask the Skill to design a toon shading pipeline for your game character and specify your engine, target art style, and the problems you want solved.

Frequently Asked Questions about stylized-rendering

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

FAQPage Schema
How do I build a toon shading pipeline in Unity 6 URP?

Stylized rendering in Unity 6 URP uses ramp lighting, smoothed normals, and custom render passes to achieve stable toon shading. It maps art direction to shader logic by combining half-lambert lighting, tinted shadows, and outline rendering for readable characters.

Why do my cel-shaded character outlines split at mesh seams?

Outline splitting happens when inverted-hull passes use unsmoothed vertex data. Using smoothed-normal outlines or post-process edge detection prevents seam-splitting and maintains clean, readable character silhouettes in stylized rendering pipelines.

What is the best way to render face shadows for anime characters?

The best way to render anime face shadows is using SDF maps to author precise shadow boundaries. This face shadow system prevents blotchy artifacts and ensures shadow visibility remains readable and consistent with the art direction.

Does this approach to stylized rendering work with Unreal Engine 5?

Yes, the stylized rendering workflow maps directly to Unreal Engine 5 using custom shading models and render passes. It supports cel shading, MatCap-based sheen, and anisotropic hair highlights to maintain art direction across UE5.

How do I fix black shadows and tonemap clashes in game shaders?

Black shadows and tonemap clashes are common stylized rendering failure modes fixed by applying ambient lift, stylizing received shadows, and adjusting post-processing choices. These adjustments preserve color readability and prevent dark, muddy character materials.