VirtualFramework/Assets/Scripts/UI/UILoading.Designer.cs

47 lines
696 B
C#
Raw Normal View History

2024-12-14 18:27:59 +08:00
using System;
using UnityEngine;
using UnityEngine.UI;
using QFramework;
namespace QFramework.Example
{
2025-03-19 11:05:35 +08:00
// Generate Id:0cf7907b-fa4f-4136-98bd-0385ff0719f0
2024-12-14 18:27:59 +08:00
public partial class UILoading
{
public const string Name = "UILoading";
[SerializeField]
public TMPro.TextMeshProUGUI Label;
private UILoadingData mPrivateData = null;
protected override void ClearUIComponents()
{
Label = null;
mData = null;
}
public UILoadingData Data
{
get
{
return mData;
}
}
UILoadingData mData
{
get
{
return mPrivateData ?? (mPrivateData = new UILoadingData());
}
set
{
mUIData = value;
mPrivateData = value;
}
}
}
}