using System;
namespace UnityEngine.Rendering
{
///
/// Attribute used to customize UI display.
///
[AttributeUsage(AttributeTargets.Field)]
public class DisplayInfoAttribute : Attribute
{
/// Display name used in UI.
public string name;
/// Display order used in UI.
public int order;
}
///
/// Attribute used to customize UI display to allow properties only be visible when "Show Additional Properties" is selected
///
[AttributeUsage(AttributeTargets.Field)]
public class AdditionalPropertyAttribute : Attribute
{
}
}