17 lines
418 B
C#
17 lines
418 B
C#
using UnityEditor;
|
|
using XericUI;
|
|
using XericUI.OverrideUI;
|
|
|
|
namespace XericUIEditor.OverrideUI
|
|
{
|
|
[CustomEditor(typeof(XericUIrAttributeToggle))]
|
|
internal class XericUIrAttributeToggleEditor : XericToggleEditor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
base.OnInspectorGUI();
|
|
XericUIrAttributeEditorHelper.DrawAttributeTagFields(serializedObject);
|
|
}
|
|
}
|
|
}
|