Files
CreatGame/UnityGame/Assets/Scripts/GameLogic/UI/UIViewBase.cs
2025-07-17 09:52:33 +08:00

61 lines
1.6 KiB
C#

using UnityEngine;
namespace CreatGame.UI
{
public class UIViewBase
{
/// <summary>
/// 预制件的Addressables地址
/// 由导出代码自己添加
/// </summary>
public virtual string PrefabPath { get; set; }
/// <summary>
/// 窗口预制件
/// </summary>
protected GameObject m_ViewObject;
/// <summary>
/// 导出脚本
/// </summary>
protected UIExportTool m_ExportTool;
/// <summary>
/// 是否加载完成
/// </summary>
public bool IsPreLoad = false;
/// <summary>
/// 加载窗口的时候需要预先加载的东西
/// </summary>
public virtual void PreLoad(GameObject viewObject)
{
m_ViewObject = viewObject;
m_ExportTool = viewObject.GetComponent<UIExportTool>();
IsPreLoad = true;
}
/// <summary>
/// 初始化界面
/// </summary>
public virtual void InitView()
{
}
/// <summary>
/// 关闭窗口的时候的调用
/// </summary>
public virtual void CloseView()
{
GameObject.Destroy(m_ViewObject);
}
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;
}
}
}