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

68 lines
1.2 KiB
C#
Raw Normal View History

2025-02-10 17:23:54 +08:00
using System;
using UnityEngine;
using UnityEngine.UI;
using QFramework;
namespace QFramework.Example
{
2025-02-14 13:20:54 +08:00
// Generate Id:517b031d-7fb8-4418-aa63-70787d47d5ff
2025-02-10 17:23:54 +08:00
public partial class UIBody3D
{
public const string Name = "UIBody3D";
[SerializeField]
public RectTransform BodyContent;
[SerializeField]
2025-02-13 11:02:16 +08:00
public RectTransform LeftContent;
[SerializeField]
2025-02-14 13:20:54 +08:00
public UnityEngine.UI.Button ResetBtn;
2025-02-13 11:02:16 +08:00
[SerializeField]
public UnityEngine.UI.Toggle ActiveBtn;
[SerializeField]
public UnityEngine.UI.Button ActiveBack;
[SerializeField]
2025-02-14 13:20:54 +08:00
public UnityEngine.UI.Toggle DragBtn;
[SerializeField]
public UnityEngine.UI.Button DragBack;
[SerializeField]
2025-02-10 17:23:54 +08:00
public UnityEngine.UI.Toggle BodyItem;
private UIBody3DData mPrivateData = null;
protected override void ClearUIComponents()
{
BodyContent = null;
2025-02-13 11:02:16 +08:00
LeftContent = null;
2025-02-14 13:20:54 +08:00
ResetBtn = null;
ActiveBtn = null;
ActiveBack = null;
2025-02-14 13:20:54 +08:00
DragBtn = null;
DragBack = null;
2025-02-10 17:23:54 +08:00
BodyItem = null;
mData = null;
}
public UIBody3DData Data
{
get
{
return mData;
}
}
UIBody3DData mData
{
get
{
return mPrivateData ?? (mPrivateData = new UIBody3DData());
}
set
{
mUIData = value;
mPrivateData = value;
}
}
}
}