IndieGame/client/Assets/Ether/Scripts/Module/UI/UIElement.cs

40 lines
1006 B
C#
Raw Normal View History

2024-10-11 10:12:15 +08:00
/********************************************************************
: UIElement.cs
:
: 1982614048@qq.com
: 2024/03/29 17:28:19
:
: 2024/04/03 16:00:47
:
*********************************************************************/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ether
{
public class UIElement
{
/// <summary>
/// 界面名称
/// </summary>
public string frameName;
/// <summary>
/// Prefab路径
/// </summary>
public string prefabPath;
/// <summary>
/// 界面层级
/// </summary>
public FrameTier tier = FrameTier.Middle;
/// <summary>
/// 界面类型
/// </summary>
public FrameType frameType = FrameType.Frame;
/// <summary>
/// 界面物体
/// </summary>
public GameObject Root;
}
}