The bTickAnimationOnSkeletalMeshInit should prevent a game thread update of the anim instance on the frame that a mesh is spawned. However, a bug in RefreshBoneTransforms is resulting in a game thread update happening anyway in many circumstances. This is due to the following check not being the same between the main anim instance vs the post process anim instance:
if (AnimScriptInstance && !AnimScriptInstance->NeedsUpdate())
{
bShouldTickAnimation = !AnimScriptInstance->GetUpdateCounter().HasEverBeenUpdated();
}
bShouldTickAnimation = bShouldTickAnimation || (ShouldPostUpdatePostProcessInstance() && !PostProcessAnimInstance->GetUpdateCounter().HasEverBeenUpdated());