mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 00:38:23 -05:00
345 B
345 B
On Value Changed Attribute
Executes a method with the specified name when the value of the field changes.
[OnValueChanged("OnValueChanged")]
public int foo;
void OnValueChanged(int value)
{
Debug.Log(value);
}
Parameter | Description |
---|---|
MethodName | The name of the method to be called when the value changes. |