ToolMessageElement.Designer.cs 823 B

123456789101112131415161718192021222324252627282930313233
  1. /****************************************************************************
  2. * 2024.9 CHIVA
  3. ****************************************************************************/
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. using QFramework;
  7. namespace QFramework
  8. {
  9. public partial class ToolMessageElement
  10. {
  11. [SerializeField] public UnityEngine.UI.Image ToolIconBg;
  12. [SerializeField] public UnityEngine.UI.Image ToolIcon;
  13. [SerializeField] public UnityEngine.UI.Text ToolName;
  14. [SerializeField] public UnityEngine.RectTransform Content;
  15. [SerializeField] public UnityEngine.UI.Text ToolMessage;
  16. public void Clear()
  17. {
  18. ToolIconBg = null;
  19. ToolIcon = null;
  20. ToolName = null;
  21. Content = null;
  22. ToolMessage = null;
  23. }
  24. public override string ComponentName
  25. {
  26. get { return "ToolMessageElement";}
  27. }
  28. }
  29. }