mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-09-18 10:04:36 +08:00
fix
This commit is contained in:
parent
745d88d284
commit
f8e0469c7c
@ -7,7 +7,7 @@ using UnityEngine;
|
|||||||
|
|
||||||
namespace DCFApixels.DragonECS.Unity.Editors
|
namespace DCFApixels.DragonECS.Unity.Editors
|
||||||
{
|
{
|
||||||
public abstract class EntityTemplateEditorBase : Editor
|
internal abstract class EntityTemplateEditorBase : Editor
|
||||||
{
|
{
|
||||||
private static readonly Rect RemoveButtonRect = new Rect(0f, 0f, 19f, 19f);
|
private static readonly Rect RemoveButtonRect = new Rect(0f, 0f, 19f, 19f);
|
||||||
private static readonly Rect TooltipIconRect = new Rect(0f, 0f, 19f, 19f);
|
private static readonly Rect TooltipIconRect = new Rect(0f, 0f, 19f, 19f);
|
||||||
@ -237,7 +237,7 @@ namespace DCFApixels.DragonECS.Unity.Editors
|
|||||||
}
|
}
|
||||||
|
|
||||||
[CustomEditor(typeof(ScriptableEntityTemplate), true)]
|
[CustomEditor(typeof(ScriptableEntityTemplate), true)]
|
||||||
public class EntityTemplatePresetEditor : EntityTemplateEditorBase
|
internal class EntityTemplatePresetEditor : EntityTemplateEditorBase
|
||||||
{
|
{
|
||||||
public override void OnInspectorGUI()
|
public override void OnInspectorGUI()
|
||||||
{
|
{
|
||||||
@ -245,7 +245,7 @@ namespace DCFApixels.DragonECS.Unity.Editors
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
[CustomEditor(typeof(MonoEntityTemplate), true)]
|
[CustomEditor(typeof(MonoEntityTemplate), true)]
|
||||||
public class EntityTemplateEditor : EntityTemplateEditorBase
|
internal class EntityTemplateEditor : EntityTemplateEditorBase
|
||||||
{
|
{
|
||||||
public override void OnInspectorGUI()
|
public override void OnInspectorGUI()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user