更新,spine和很多优化

This commit is contained in:
FloatGaming
2026-02-24 05:36:08 +08:00
parent 14fb281d6f
commit d5c8966abd
2039 changed files with 348643 additions and 2589 deletions
@@ -0,0 +1,20 @@
using UnityEngine;
using UnityEngine.EventSystems;
public class UI_FunctionHoverTarget : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
{
public UI_FunctionHoverGuide guide;
public UI_FunctionHoverEntry entry;
public void OnPointerEnter(PointerEventData eventData)
{
if (guide != null && entry != null)
guide.ApplyEntry(entry);
}
public void OnPointerExit(PointerEventData eventData)
{
if (guide != null && entry != null)
guide.ClearEntry(entry);
}
}