14 lines
360 B
C#
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;
|
|
}
|
|
}
|
|
}
|