Files
com.misaki.hdrp-toon/Runtime/UTS Renderer/Debug/UTSDebug.cs
Misaki 018300e046 Folder clean up;
Added Emissive;
2025-01-29 12:27:09 +09:00

36 lines
693 B
C#

using UnityEngine.Rendering;
namespace Misaki.HdrpToon
{
[GenerateHLSL]
public enum UTS_BSDFDebug
{
None,
BaseColor,
Normal,
Smoothness,
Metallic,
AmbientOcclusion,
SpecularOcclusion,
SpecularColor,
Anisotropy,
HairRoughness,
NormalWS,
}
[GenerateHLSL]
public enum UTS_LightingDebug
{
None,
DiffuseLighting,
SpecularLighting,
DirectDiffuseLighting,
DirectSpecularLighting,
IndirectDiffuseLighting,
IndirectSpecularLighting,
IndirectDiffuseOcclusion,
IndirectSpecularOcclusion,
Emission,
}
}