1234567891011121314151617181920212223242526272829303132333435 |
- /****************************************************************************
- * 2024.5 LXD
- ****************************************************************************/
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework
- {
- public partial class UITreeNode01
- {
- [SerializeField] public UnityEngine.UI.Image selectIcon;
- [SerializeField] public UnityEngine.UI.Image clickButton;
- [SerializeField] public UnityEngine.UI.Toggle selectToggle;
- [SerializeField] public UnityEngine.UI.Image ExpandImg;
- [SerializeField] public UnityEngine.UI.Image RecoverImg;
- [SerializeField] public UnityEngine.UI.Text contentText;
- public void Clear()
- {
- selectIcon = null;
- clickButton = null;
- selectToggle = null;
- ExpandImg = null;
- RecoverImg = null;
- contentText = null;
- }
- public override string ComponentName
- {
- get { return "UITreeNode01";}
- }
- }
- }
|