12345678910111213141516171819202122232425262728293031323334353637 |
- /****************************************************************************
- * 2024.9 CHIVA
- ****************************************************************************/
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework
- {
- public partial class ToolItemPrefab
- {
- [SerializeField] public UnityEngine.UI.Image PromptIcon;
- [SerializeField] public UnityEngine.UI.Image NormalState;
- [SerializeField] public UnityEngine.UI.Image HighterState;
- [SerializeField] public UnityEngine.UI.Image HighterIcon;
- [SerializeField] public UnityEngine.UI.Image SelectState;
- [SerializeField] public UnityEngine.UI.Image ToolIcon;
- [SerializeField] public UnityEngine.UI.Text ToolName;
- public void Clear()
- {
- PromptIcon = null;
- NormalState = null;
- HighterState = null;
- HighterIcon = null;
- SelectState = null;
- ToolIcon = null;
- ToolName = null;
- }
- public override string ComponentName
- {
- get { return "ToolItemPrefab";}
- }
- }
- }
|