Files
com.misaki.hdrp-toon/Runtime/Models/SurfaceFeature.cs
Misaki 35dc7b15a6 Added new fabirc pbr mode;
Added new stocking surface feature;

Fixed the issue that diffuse bsdf is not energy conserving.
Fixed the bug that shader can not render alpha clip properly;
2025-05-15 16:07:54 +09:00

15 lines
266 B
C#

using System;
using UnityEngine.Rendering;
namespace Misaki.HdrpToon
{
[Flags]
[GenerateHLSL(PackingRules.Exact)]
public enum SurfaceFeature
{
None = 0,
Stocking = 1 << 0,
RimLight = 1 << 1,
AngelRing = 1 << 2
}
}