Why OnMountPak.IsBound() return false?

Thanks every body.?
I wanna ask a question …
I set to load a pak file dynamic…

But it not work…

I Found
bool result=FCoreDelegates::OnMountPak.IsBound();

IsBound Always Return false …
I Hope someone can help me .Thanks

if (FCoreDelegates::OnMountPak.IsBound()) {

	FMyFileVisitor Vistor;
	TArray<FString> FileList;


	if (FCoreDelegates::OnMountPak.Execute(pakPath, 4, &Vistor))

}

Hi, you need to set platform file to pakfile and call Initialize. That’s where that delegate gets bound.

Hi, can you show how?
Thanks.