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

19 lines
643 B
C#

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"
};
}
}