Hi EightyGee,
Thanks for reporting this, I’ve entered UE-46870. You can track the report’s status as the issue is reviewed by our development staff. Please be aware that this issue may not be prioritized or fixed soon.
Hi EightyGee,
Thanks for reporting this, I’ve entered UE-46870. You can track the report’s status as the issue is reviewed by our development staff. Please be aware that this issue may not be prioritized or fixed soon.
Repro Steps:
Since BoneSpaceTransforms includes the virtual bones and RefSkeleton.GetRawBoneNum() doesn’t the values aren’t going to match if there are virtual bones.
Assuming that the indices of virtual bones are always higher than the indices of the raw bones in the ref , changing the assert to read “>=” instead of “==” should safely fix the issue as the for loop that follows will still only loop through the bones in the raw , so as long as the first NumBones in the BoneSpaceTransforms map to bones in the raw , any additional bone transforms added as a result of the additional virtual bones will be ignored.