Tri-Inspector/Runtime/Attributes/OnValueChangedAttribute.cs
2023-03-12 11:38:39 +04:00

17 lines
384 B
C#

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; }
}
}