using UnityEngine; using System; using System.Collections; namespace AdvancedInspector { /// /// Removes the object picking field from a selectable object. /// Useful when the object is set internally, should be edited but not changed. /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public class NoPicker : Attribute, IListAttribute { } }