14 lines
437 B
C#
14 lines
437 B
C#
|
using UnityEngine.Rendering.Universal;
|
||
|
|
||
|
namespace UnityEditor.Rendering.Universal
|
||
|
{
|
||
|
[CustomPropertyDrawer(typeof(URPShaderStrippingSetting))]
|
||
|
class ShaderStrippingSettingPropertyDrawer : RelativePropertiesDrawer
|
||
|
{
|
||
|
protected override string[] relativePropertiesNames => new[]
|
||
|
{
|
||
|
"m_StripUnusedPostProcessingVariants", "m_StripUnusedVariants", "m_StripScreenCoordOverrideVariants"
|
||
|
};
|
||
|
}
|
||
|
}
|