/********************************************************************
文件: 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
{
///
/// 界面名称
///
public string frameName;
///
/// Prefab路径
///
public string prefabPath;
///
/// 界面层级
///
public FrameTier tier = FrameTier.Middle;
///
/// 界面类型
///
public FrameType frameType = FrameType.Frame;
///
/// 界面物体
///
public GameObject Root;
}
}