[fix] UIHolderObjectBase

This commit is contained in:
陈思海 2026-04-24 14:41:41 +08:00
parent 4d73c62440
commit a74715b468

View File

@ -71,6 +71,12 @@ namespace AlicizaX.UI.Runtime
return true;
}
if (!_isAlive || this == null)
{
transitionPlayer = null;
return false;
}
_transitionPlayer = GetComponent<IUITransitionPlayer>();
transitionPlayer = _transitionPlayer;
return transitionPlayer != null;