AlicizaX/Client/Packages/com.alicizax.unity.event/Editor/Inspector/EventComponentInspector.cs

36 lines
1020 B
C#
Raw Normal View History

2025-01-23 19:06:48 +08:00
using AlicizaX.Editor;
using AlicizaX.Event.Runtime;
using UnityEditor;
namespace AlicizaX.Event.Editor
{
[CustomEditor(typeof(EventComponent))]
internal sealed class EventComponentInspector : ComponentTypeComponentInspector
{
public override void OnInspectorGUI()
{
base.OnInspectorGUI();
if (!EditorApplication.isPlaying)
{
EditorGUILayout.HelpBox("Available during runtime only.", MessageType.Info);
return;
}
EventComponent t = (EventComponent)target;
if (IsPrefabInHierarchy(t.gameObject))
{
EditorGUILayout.LabelField("Event Handler Count", t.EventHandlerCount.ToString());
EditorGUILayout.LabelField("Event Count", t.EventCount.ToString());
}
Repaint();
}
protected override void RefreshTypeNames()
{
RefreshComponentTypeNames(typeof(IEventManager));
}
}
}