28 lines
786 B
C#
28 lines
786 B
C#
using System.Text.RegularExpressions;
|
|
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
|
|
namespace AlicizaX.Editor
|
|
{
|
|
public class InspectorEditor<T> : UnityEditor.Editor where T : Object
|
|
{
|
|
public T Target { get; private set; }
|
|
public PropertyCollection Properties { get; private set; }
|
|
|
|
public virtual void OnEnable()
|
|
{
|
|
Target = target as T;
|
|
Properties = EditorDrawing.GetAllProperties(serializedObject);
|
|
}
|
|
|
|
public override void OnInspectorGUI()
|
|
{
|
|
string name = Target.GetType().Name;
|
|
string spacedName = Regex.Replace(name, "(\\B[A-Z])", " $1");
|
|
EditorDrawing.DrawInspectorHeader(new GUIContent(spacedName), Target);
|
|
EditorGUILayout.Space();
|
|
}
|
|
}
|
|
}
|