Files
Fishing2NetTest/Assets/Scripts/Editor/Test/PlayerAnimatorEditor.cs
2026-03-05 18:07:55 +08:00

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();
}
}
}