lingfeng.log (111.2 KB)
Gods, help
Hi!
I’m not 100% sure, but you can try adding check for object I being valid at the start of the function.
void UPickUpTipsUi::EnterOpen(FText N, UObject* I)
{
if (I == nullptr)
{
// Maybe add log about object I not being valid.
return;
}
// Other code.
}