Tri-Inspector/Runtime/Attributes/OnValueChangedAttribute.cs

17 lines
391 B
C#
Raw Normal View History

2022-05-11 07:15:12 -04:00
using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
[Conditional("UNITY_EDITOR")]
public sealed class OnValueChangedAttribute : Attribute
{
public OnValueChangedAttribute(string method)
{
Method = method;
}
public string Method { get; }
}
}