We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 530d282 commit 31c047cCopy full SHA for 31c047c
Unreal/UnrealMesh/UnMesh4.cpp
@@ -1677,6 +1677,7 @@ struct FStaticLODModel4
1677
}
1678
1679
// UE4.24+ serializer for most of LOD data
1680
+ // Reference: FSkeletalMeshLODRenderData::SerializeStreamedData
1681
void SerializeStreamedData(FArchive& Ar)
1682
{
1683
guard(FStaticLODModel4::SerializeStreamedData);
@@ -1712,6 +1713,12 @@ struct FStaticLODModel4
1712
1713
FSkinWeightProfilesData SkinWeightProfilesData;
1714
Ar << SkinWeightProfilesData;
1715
1716
+ if (Ar.Game >= GAME_UE4(27))
1717
+ {
1718
+ TArray<uint8> RayTracingData;
1719
+ Ar << RayTracingData;
1720
+ }
1721
+
1722
//todo: this is a copy-paste of SerializeRenderItem_Legacy code!
1723
guard(BuildVertexData);
1724
0 commit comments