123456789101112131415161718192021222324252627282930313233 |
- /****************************************************************************
- * 2024.9 CHIVA
- ****************************************************************************/
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework
- {
- public partial class ToolMessageElement
- {
- [SerializeField] public UnityEngine.UI.Image ToolIconBg;
- [SerializeField] public UnityEngine.UI.Image ToolIcon;
- [SerializeField] public UnityEngine.UI.Text ToolName;
- [SerializeField] public UnityEngine.RectTransform Content;
- [SerializeField] public UnityEngine.UI.Text ToolMessage;
- public void Clear()
- {
- ToolIconBg = null;
- ToolIcon = null;
- ToolName = null;
- Content = null;
- ToolMessage = null;
- }
- public override string ComponentName
- {
- get { return "ToolMessageElement";}
- }
- }
- }
|