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

19 lines
643 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using UnityEngine.Rendering.HighDefinition;
using UnityEngine.UIElements;
namespace UnityEditor.Rendering.HighDefinition
{
[CustomPropertyDrawer(typeof(CustomPostProcessOrdersSettings))]
class CustomPostProcessOrdersSettingsPropertyDrawer : RelativePropertiesDrawer
{
protected override string[] relativePropertiesNames => new[]
{
"m_BeforeTAACustomPostProcesses",
"m_BeforePostProcessCustomPostProcesses",
"m_BeforeTransparentCustomPostProcesses",
"m_AfterPostProcessBlursCustomPostProcesses",
"m_AfterPostProcessCustomPostProcesses"
};
}
}