1234567891011121314151617181920212223242526272829303132333435 |
- /****************************************************************************
- * 2021.7 DESKTOP-CLH3E67
- ****************************************************************************/
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework.ThermalPower
- {
- public partial class UITreeNode
- {
- [SerializeField] public UnityEngine.UI.Image Positon;
- [SerializeField] public UnityEngine.UI.Toggle Toggle;
- [SerializeField] public UnityEngine.UI.Image ExpandImg;
- [SerializeField] public UnityEngine.UI.Image RecoverImg;
- [SerializeField] public UnityEngine.UI.Text ContentText;
- [SerializeField] public UnityEngine.UI.Button Button;
- public void Clear()
- {
- Positon = null;
- Toggle = null;
- ExpandImg = null;
- RecoverImg = null;
- ContentText = null;
- Button = null;
- }
- public override string ComponentName
- {
- get { return "UITreeNode";}
- }
- }
- }
|