In past compatibility detection in FWorldPartitionClassDescRegistry::PrefetchClassDescs, as AssetRegistry.TryGetAssetPackageData returns UE::AssetRegistry::EExists::Unknown in standalone games, so the ClassDescriptor will be disabled.
If all assets have been updated, the following workarounds can be considered
void FWorldPartitionClassDescRegistry::PrefetchClassDescs(const TArray<FTopLevelAssetPath>& InClassPaths) ... #if 1 //work around - disabling old version check in standalone game if (GEditor != nullptr) { #endif if (AssetRegistry.TryGetAssetPackageData(AssetData.PackageName, PackageData) == UE::AssetRegistry::EExists::Exists) { for (const UE::AssetRegistry::FPackageCustomVersion& CustomVersion : PackageData.GetCustomVersions()) { if(CustomVersion.Key == FFortniteMainBranchObjectVersion::GUID) { if (CustomVersion.Version < FFortniteMainBranchObjectVersion::WorldPartitionActorClassDescSerialize) { bOldAsset = true; } break; } } } else { bOldAsset = true; } #if 1 //work around } #endif
Result:
IsSpatiallyLoaded flag set in actor blueprint is ignored in standalone game
I am not able to find world outliner how to enable it?
Undefined sysmbol: typeinfo for AActor when cross-compile linux dedicated server on windows
How can i modify the param name in EQS node
How to achieve HLSL Multiple Render Target in Material blueprints?
Delay nodes occasionally don't fire the "Completed" output in a nativized build
When I open UE4 4.24.3 it appears that. Does anyone know how to solve?
Teleporter in the Creative Hub is Locked and cannot be accessed
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-219132 in the post.
1 |
Component | UE - World Creation - Worldbuilding Tools - World Partition |
---|---|
Affects Versions | 5.4, 5.3 |
Target Fix | 5.5 |
Fix Commit | 33973992 |
---|
Created | Jul 1, 2024 |
---|---|
Resolved | Jul 17, 2024 |
Updated | Jul 24, 2024 |