2025-02-10 17:23:54 +08:00
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
using QFramework;
|
|
|
|
|
|
|
|
|
|
namespace QFramework.Example
|
|
|
|
|
{
|
2025-03-19 11:05:35 +08:00
|
|
|
// Generate Id:3d26edd2-71c3-4899-bb23-6674108be2c7
|
2025-02-10 17:23:54 +08:00
|
|
|
public partial class UIBody3D
|
|
|
|
|
{
|
|
|
|
|
public const string Name = "UIBody3D";
|
|
|
|
|
|
2025-02-13 11:02:16 +08:00
|
|
|
[SerializeField]
|
2025-03-11 16:27:06 +08:00
|
|
|
public UnityEngine.UI.Image LeftBg;
|
2025-02-19 13:07:05 +08:00
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Button ResetBtn;
|
2025-02-19 13:07:05 +08:00
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Toggle ActiveBtn;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Button ActiveBack;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle DragBtn;
|
2025-02-19 14:01:21 +08:00
|
|
|
[SerializeField]
|
2025-03-11 16:27:06 +08:00
|
|
|
public UnityEngine.UI.Button DragReset;
|
2025-02-13 17:21:18 +08:00
|
|
|
[SerializeField]
|
2025-03-11 16:27:06 +08:00
|
|
|
public UnityEngine.UI.Button DragBack;
|
2025-02-13 17:21:18 +08:00
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Toggle DrawBtn;
|
2025-02-14 13:20:54 +08:00
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Toggle MouseBtn;
|
2025-02-19 13:07:05 +08:00
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Button PicBtn;
|
2025-02-14 13:20:54 +08:00
|
|
|
[SerializeField]
|
2025-03-18 10:34:06 +08:00
|
|
|
public UnityEngine.UI.Toggle BgBtn;
|
|
|
|
|
[SerializeField]
|
2025-03-19 11:05:35 +08:00
|
|
|
public UnityEngine.UI.Button LikeBtn;
|
|
|
|
|
[SerializeField]
|
2025-03-18 10:34:06 +08:00
|
|
|
public UnityEngine.UI.Image BgSelect;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle White;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle Black;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle Grey;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle Gradient;
|
|
|
|
|
[SerializeField]
|
2025-03-11 16:27:06 +08:00
|
|
|
public UnityEngine.UI.Toggle HideAll;
|
2025-02-21 11:49:10 +08:00
|
|
|
[SerializeField]
|
2025-02-19 14:01:21 +08:00
|
|
|
public RectTransform RightContent;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public RectTransform BodyList;
|
|
|
|
|
[SerializeField]
|
2025-03-11 15:22:41 +08:00
|
|
|
public RectTransform BodyContent;
|
|
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Button MenuBtn;
|
2025-02-19 14:01:21 +08:00
|
|
|
[SerializeField]
|
2025-03-14 11:24:44 +08:00
|
|
|
public UnityEngine.UI.Button CloseBtn;
|
2025-02-14 17:09:41 +08:00
|
|
|
[SerializeField]
|
2025-03-19 11:05:35 +08:00
|
|
|
public TMPro.TextMeshProUGUI TitleName;
|
|
|
|
|
[SerializeField]
|
2025-03-17 17:21:06 +08:00
|
|
|
public UnityEngine.UI.Toggle RotMode;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle LineMode;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle LockMode;
|
|
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Button help;
|
|
|
|
|
[SerializeField]
|
2025-02-14 17:09:41 +08:00
|
|
|
public UnityEngine.UI.Button BodyBtn;
|
2025-03-14 11:24:44 +08:00
|
|
|
[SerializeField]
|
|
|
|
|
public UnityEngine.UI.Toggle BodyItem;
|
2025-02-10 17:23:54 +08:00
|
|
|
|
|
|
|
|
private UIBody3DData mPrivateData = null;
|
|
|
|
|
|
|
|
|
|
protected override void ClearUIComponents()
|
|
|
|
|
{
|
2025-03-11 16:27:06 +08:00
|
|
|
LeftBg = null;
|
2025-03-14 11:24:44 +08:00
|
|
|
ResetBtn = null;
|
2025-03-11 16:27:06 +08:00
|
|
|
ActiveBtn = null;
|
|
|
|
|
ActiveBack = null;
|
2025-03-14 11:24:44 +08:00
|
|
|
DragBtn = null;
|
|
|
|
|
DragReset = null;
|
|
|
|
|
DragBack = null;
|
|
|
|
|
DrawBtn = null;
|
|
|
|
|
MouseBtn = null;
|
|
|
|
|
PicBtn = null;
|
2025-03-18 10:34:06 +08:00
|
|
|
BgBtn = null;
|
2025-03-19 11:05:35 +08:00
|
|
|
LikeBtn = null;
|
2025-03-18 10:34:06 +08:00
|
|
|
BgSelect = null;
|
|
|
|
|
White = null;
|
|
|
|
|
Black = null;
|
|
|
|
|
Grey = null;
|
|
|
|
|
Gradient = null;
|
2025-03-11 16:27:06 +08:00
|
|
|
HideAll = null;
|
2025-02-19 14:01:21 +08:00
|
|
|
RightContent = null;
|
|
|
|
|
BodyList = null;
|
2025-03-11 15:22:41 +08:00
|
|
|
BodyContent = null;
|
2025-03-14 11:24:44 +08:00
|
|
|
MenuBtn = null;
|
2025-02-19 14:01:21 +08:00
|
|
|
CloseBtn = null;
|
2025-03-19 11:05:35 +08:00
|
|
|
TitleName = null;
|
2025-03-17 17:21:06 +08:00
|
|
|
RotMode = null;
|
|
|
|
|
LineMode = null;
|
|
|
|
|
LockMode = null;
|
|
|
|
|
help = null;
|
2025-02-14 17:09:41 +08:00
|
|
|
BodyBtn = null;
|
2025-03-14 11:24:44 +08:00
|
|
|
BodyItem = null;
|
2025-02-10 17:23:54 +08:00
|
|
|
|
|
|
|
|
mData = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public UIBody3DData Data
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return mData;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UIBody3DData mData
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return mPrivateData ?? (mPrivateData = new UIBody3DData());
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
mUIData = value;
|
|
|
|
|
mPrivateData = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|