canto/Assets/Scripts/System/Attributes/AnimatorControllerPropertyAttribute.cs
2025-10-02 15:28:03 -04:00

14 lines
360 B
C#

using UnityEngine;
namespace KitsuneCafe.Sys.Attributes
{
public class AnimatorControllerPropertyAttribute : PropertyAttribute
{
public string AnimatorControllerField { get; private set; }
public AnimatorControllerPropertyAttribute(string animatorControllerField = null)
{
AnimatorControllerField = animatorControllerField;
}
}
}