using System; using System.Diagnostics; namespace TriInspector { [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] [Conditional("UNITY_EDITOR")] public class OnValueChangedAttribute : Attribute { public OnValueChangedAttribute(string method) { Method = method; } public string Method { get; } } }