123456789101112131415161718192021222324252627282930313233 |
- /****************************************************************************
- * 2024.9 CHIVA
- ****************************************************************************/
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework
- {
- public partial class SecondStepItem
- {
- [SerializeField] public UnityEngine.UI.Image SelectIcon;
- [SerializeField] public UnityEngine.UI.Image NormalIcon;
- [SerializeField] public UnityEngine.RectTransform Mark;
- [SerializeField] public UnityEngine.UI.Text Message;
- [SerializeField] public UnityEngine.UI.Button ClickBtn;
- public void Clear()
- {
- SelectIcon = null;
- NormalIcon = null;
- Mark = null;
- Message = null;
- ClickBtn = null;
- }
- public override string ComponentName
- {
- get { return "SecondStepItem";}
- }
- }
- }
|