Description

FSkeletalMeshComponentInstanceData subclasses FSceneComponentInstanceData instead of FPrimitiveComponentInstanceData. When calling ApplyToComponent() the SceneComponentInstanceData version will be called. There, the call to PrimitiveComponent->UpdateCollisionProfile(); is missing, so Custom Collision profiles are not applied.
The licensee is counting on this call to apply a Custom Collision profile.

Steps to Reproduce

Checking the source code of UE 5.5.4, the inheritance chain goes like this:
struct ENGINE_API FSkeletalMeshComponentInstanceData : public FSceneComponentInstanceData
struct FSceneComponentInstanceData : public FActorComponentInstanceData
struct FActorComponentInstanceData : public FInstanceCacheDataBase
struct FInstanceCacheDataBase

Expected result: calling ApplyToComponent() should apply a CustomCollision profile
Actual result: FSkeletalMeshComponentInstanceData does not implement FPrimitiveComponentInstanceData and because of that ApplyToComponent() does not call PrimitiveComponent->UpdateCollisionProfile(); - so Custom Collision profiles are not applied

Have Comments or More Details?

There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-257056 in the post.

0
Login to Vote

Unresolved
ComponentUE - Anim - Rigging
Affects Versions5.5.4
CreatedMar 19, 2025
UpdatedMar 28, 2025
View Jira Issue