好多新内容

This commit is contained in:
2026-07-22 05:35:53 +08:00
parent b5d1cdcbc5
commit 15649d02f8
128 changed files with 5956 additions and 673 deletions
@@ -59,6 +59,12 @@ public class loadDetailsPrefab : MonoBehaviour
}
preferLeftOfCursor = ShouldDisplayOnLeft(type, heroLevel);
// 宿主 GameObject 处于非激活状态时无法启动协程(会抛异常)。此时直接跳过——
// 悬浮详情本就依附于激活的界面,宿主未激活时不显示详情是合理且无副作用的。
if (!isActiveAndEnabled)
{
return;
}
showCoroutine = StartCoroutine(ShowDetailsDelayed(type, name, status, description, position, heroLevel));
}