您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
99 行
3.3 KiB
99 行
3.3 KiB
using System;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
[GenerateHLSL]
|
|
public enum DebugLightingMode
|
|
{
|
|
None,
|
|
DiffuseLighting,
|
|
SpecularLighting,
|
|
LuxMeter,
|
|
LuminanceMeter,
|
|
VisualizeCascade,
|
|
VisualizeShadowMasks,
|
|
IndirectDiffuseOcclusion,
|
|
IndirectSpecularOcclusion,
|
|
ScreenSpaceTracingRefraction,
|
|
ScreenSpaceTracingReflection
|
|
}
|
|
|
|
[GenerateHLSL]
|
|
public enum DebugScreenSpaceTracing
|
|
{
|
|
None,
|
|
Color,
|
|
RayDirWS,
|
|
HitDepth,
|
|
HitSuccess,
|
|
TracingModel,
|
|
HiZPositionNDC,
|
|
HiZRayDirNDC,
|
|
HiZIterationCount,
|
|
HiZMaxUsedMipLevel,
|
|
HiZIntersectionKind,
|
|
HiZHitWeight,
|
|
HiZSampledColor,
|
|
HiZDiff,
|
|
LinearPositionNDC,
|
|
LinearRayDirNDC,
|
|
LinearIterationCount,
|
|
LinearHitWeight,
|
|
LinearSampledColor
|
|
}
|
|
|
|
public enum ShadowMapDebugMode
|
|
{
|
|
None,
|
|
VisualizeAtlas,
|
|
VisualizeShadowMap
|
|
}
|
|
|
|
[Serializable]
|
|
public class LightingDebugSettings
|
|
{
|
|
public bool IsDebugDisplayEnabled()
|
|
{
|
|
return debugLightingMode != DebugLightingMode.None || overrideSmoothness || overrideAlbedo || overrideNormal || overrideSpecularColor;
|
|
}
|
|
|
|
public bool IsDebugDisplayRemovePostprocess()
|
|
{
|
|
return debugLightingMode != DebugLightingMode.None;
|
|
}
|
|
|
|
public DebugLightingMode debugLightingMode = DebugLightingMode.None;
|
|
public DebugScreenSpaceTracing debugScreenSpaceTracingMode = DebugScreenSpaceTracing.None;
|
|
public ShadowMapDebugMode shadowDebugMode = ShadowMapDebugMode.None;
|
|
public bool shadowDebugUseSelection = false;
|
|
public uint shadowMapIndex = 0;
|
|
public uint shadowAtlasIndex = 0;
|
|
public uint shadowSliceIndex = 0;
|
|
public float shadowMinValue = 0.0f;
|
|
public float shadowMaxValue = 1.0f;
|
|
|
|
public bool overrideSmoothness = false;
|
|
public float overrideSmoothnessValue = 0.5f;
|
|
public bool overrideAlbedo = false;
|
|
public Color overrideAlbedoValue = new Color(0.5f, 0.5f, 0.5f);
|
|
public bool overrideNormal = false;
|
|
public bool overrideSpecularColor = false;
|
|
public Color overrideSpecularColorValue = new Color(1.0f, 1.0f, 1.0f);
|
|
|
|
|
|
public bool displaySkyReflection = false;
|
|
public float skyReflectionMipmap = 0.0f;
|
|
|
|
public float environmentProxyDepthScale = 20;
|
|
|
|
public float debugExposure = 0.0f;
|
|
|
|
public bool showPunctualLight = true;
|
|
public bool showDirectionalLight = true;
|
|
public bool showAreaLight = true;
|
|
public bool showReflectionProbe = true;
|
|
|
|
public LightLoop.TileClusterDebug tileClusterDebug = LightLoop.TileClusterDebug.None;
|
|
public LightLoop.TileClusterCategoryDebug tileClusterDebugByCategory = LightLoop.TileClusterCategoryDebug.Punctual;
|
|
}
|
|
}
|