forked from BilalY/Rasagar
14 lines
415 B
C#
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"
|
|
};
|
|
}
|
|
}
|