ImageOptionSetItem.Designer.cs 769 B

12345678910111213141516171819202122232425262728293031
  1. /****************************************************************************
  2. * 2025.6 LXD
  3. ****************************************************************************/
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. using QFramework;
  7. namespace QFramework
  8. {
  9. public partial class ImageOptionSetItem
  10. {
  11. [SerializeField] public UnityEngine.UI.Image NormalState;
  12. [SerializeField] public UnityEngine.UI.Image HighterState;
  13. [SerializeField] public UnityEngine.UI.Button ClickBtn;
  14. [SerializeField] public UnityEngine.UI.InputField OptionInputField;
  15. public void Clear()
  16. {
  17. NormalState = null;
  18. HighterState = null;
  19. ClickBtn = null;
  20. OptionInputField = null;
  21. }
  22. public override string ComponentName
  23. {
  24. get { return "ImageOptionSetItem";}
  25. }
  26. }
  27. }