using System; namespace TNodeCore.Attribute{ /// /// Use this attribute to mark a field as disabled.An disable field will not be edit by the inspector. /// [AttributeUsage(AttributeTargets.Field, AllowMultiple = true)] public class DisableOnInspectorAttribute:System.Attribute{ } }