Files
com.misaki.hdrp-toon/Runtime/Models/SurfaceFeature.cs
Misaki 886432db7b Updated OutlineScope;
Reorgnize shader code;
2025-02-03 13:46:31 +09:00

15 lines
266 B
C#

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