21 lines
452 B
C#
21 lines
452 B
C#
using UnityEditor;
|
|
|
|
namespace NBF
|
|
{
|
|
[CustomEditor(typeof(PlayerAnimator))]
|
|
public class PlayerAnimatorEditor : Editor
|
|
{
|
|
private PlayerAnimator _target;
|
|
|
|
void OnEnable()
|
|
{
|
|
_target = target as PlayerAnimator;
|
|
// lookAtPoint = serializedObject.FindProperty("lookAtPoint");
|
|
}
|
|
|
|
public override void OnInspectorGUI()
|
|
{
|
|
base.OnInspectorGUI();
|
|
}
|
|
}
|
|
} |