Rasagar/Library/PackageCache/com.unity.render-pipelines.high-definition/Editor/PropertyDrawers/RenderingPathFrameSettingsPropertyDrawer.cs
2024-08-26 23:07:20 +03:00

14 lines
415 B
C#

using UnityEngine.Rendering.HighDefinition;
namespace UnityEditor.Rendering.HighDefinition
{
[CustomPropertyDrawer(typeof(RenderingPathFrameSettings))]
class RenderingPathFrameSettingsPropertyDrawer : RelativePropertiesDrawer
{
protected override string[] relativePropertiesNames => new[]
{
"m_Camera", "m_CustomOrBakedReflection", "m_RealtimeReflection"
};
}
}