Files
CreatGame/UnityGame/Assets/Scripts/GameLogic/UI/UIViewBase.cs
2025-07-16 18:10:09 +08:00

56 lines
1.4 KiB
C#

using UnityEngine;
namespace CreatGame.UI
{
public class UIViewBase
{
/// <summary>
/// 预制件的路径
/// </summary>
public virtual string PrefabPath { get; set; }
/// <summary>
/// 窗口预制件
/// </summary>
protected GameObject m_ViewObject;
/// <summary>
/// 导出脚本
/// </summary>
protected UIExportTool m_ExportTool;
/// <summary>
/// 加载窗口的时候需要预先加载的东西
/// </summary>
public virtual void PreLoad(GameObject viewObject)
{
m_ViewObject = viewObject;
m_ExportTool = viewObject.GetComponent<UIExportTool>();
}
/// <summary>
/// 初始化界面
/// </summary>
public virtual void InitView()
{
}
/// <summary>
/// 关闭窗口的时候的调用
/// </summary>
public virtual void CloseView()
{
}
protected GameObject GetGameObject(string name)
{
for (int i = 0; i < m_ExportTool.entries.Count; i++)
{
if (m_ExportTool.entries[i].key == name)
{
return m_ExportTool.entries[i].prefab;
}
}
return null;
}
}
}