2024-10-28 16:31:38 +00:00
|
|
|
|
using Sirenix.OdinInspector;
|
|
|
|
|
using Sirenix.OdinInspector.Editor;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace UguiToolkit.Editor.Windows
|
|
|
|
|
{
|
|
|
|
|
public class EditWindow : BaseWindow<EditWindow>
|
|
|
|
|
{
|
|
|
|
|
[SerializeField, HideInInspector]
|
|
|
|
|
private bool m_showHierarchyOfEntityChange = false;
|
|
|
|
|
|
|
|
|
|
[LabelText("ʵ<><CAB5>Hierarchy<68>Ƿ<EFBFBD><C7B7><EFBFBD>ʾ"), ShowInInspector]
|
|
|
|
|
public bool ShowHierarchyOfEntity
|
|
|
|
|
{
|
|
|
|
|
get => m_showHierarchyOfEntityChange;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
m_showHierarchyOfEntityChange = value;
|
|
|
|
|
|
2024-10-29 17:51:06 +00:00
|
|
|
|
GlobalManager.Instance.showHierarchyOfEntityChanged?.Invoke(m_showHierarchyOfEntityChange);
|
2024-10-28 16:31:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string GettitleContent()
|
|
|
|
|
{
|
|
|
|
|
return "<22><><EFBFBD>ֱ༭<D6B1><E0BCAD><EFBFBD><EFBFBD>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Init(WindowArgs args = null)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|