Rasagar/Library/PackageCache/com.unity.render-pipelines.high-definition/Editor/PropertyDrawers/RenderingPathFrameSettingsPropertyDrawer.cs

14 lines
415 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
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"
};
}
}