You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
643 B
18 lines
643 B
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"
|
|
};
|
|
}
|
|
}
|