In FMeshBoneReduction::ReduceBoneCounts we are calling InvalidateDeriveDataCacheGUID. If a user has specified bones in the Bones To Remove array for the mesh LOD, this will invalidate the guid. The problem is that this code can be called when we are building for the DDC via USkeletalMesh::CacheDerivedData. So we end up in a state where the DDC key is always regenerated. As well as the repro above, you can also see the warning when loading Game Animation Sample.
We should do a pass on the DDC key generation for the mesh's source models, the LOD settings and the ref skeleton. (A quick check of FSkeletalMeshLODInfo::ComputeDeriveDataCacheKey shows we aren't generating the key against all properties - eg. LODHysteresis). Once we know the key generation is correct, the call to InvalidateDeriveDataCacheGUID can be removed.
if(bTemp && bAllowDDCFetch && DDCUtils64Bit::GetSynchronous(DerivedDataKey, Owner, DerivedData))
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-250430 in the post.
0 |
Component | UE - Anim - Rigging |
---|---|
Target Fix | 5.6 |
Created | Feb 20, 2025 |
---|---|
Updated | Feb 26, 2025 |