Hi,
I wanted migrate my workflow from the old FBX importer to new Interchange Framework, but I couldn’t, because of the pivot point handling dealbreaker.
Then I wanted to see if I could use GLTF instead, and I couldn’t, because GLTF also uses Interchange Framework. Let me illustrate:
Imagine you have a simple vehicle asset: A body, 4 wheels, turret, and a gun.
You want each individual asset to have it’s own point, as if you apply the transforms of the individual meshes, you can no longer animate the wheels for example, because their pivot point is at the world origin, not their center.
Since you want to have clean workflow, you don’t want to have dozens of individual assets like “Body.fbx, Wheel_FL.fbx, Wheel_FR.fbx… etc” spilled in your interchange files folder. You’d like to have just one self contained “Car.fbx” file. Currently (with the soon to be legacy FBX importer), you can just do that, and export your entire vehicle as single FBX file.
All you have to do on the unreal side is to uncheck the “Transform Vertex to Absolute” checkbox in the import settings, and the importer won’t bake the transforms, effectively deleting the original pivot points from the DCC.
You can then bring your vehicle into the engine as single .FBX file, and unpack it into multiple meshes you can easily assemble into a car blueprint you can animate, especially if you also exported socket helpers:
By default, if you keep the Transform Vertex to Absolute checked, the meshes would become unusable on the UE end, as the pivot would be reset to world origin, making the basic transform animations impossible:
The problem with Interchange Framework is that it has no such option. It has obscene amount of import settings, but it just can not help itself and has to straight up delete any pivot points that come from the DCC.
Both FBX as well as GLTF are more than well capable of preserving the location of multiple meshes (containers of the primitives) in relation to the world origin. When importing exported GLTF or FBX of the car back into the DCC, all pivot points remain perfectly preserved.
The picture below shows FBX reimported back into Blender. The GLTF provided the exact same result. You can see the pivot dots being at their original places:
The only way to actually get the data correctly into UE with the Interchange Framework would be to author the scenes on the DCC end like this, where all the meshes locations are zeroed out:
This is obviously not feasible for many reasons. No artist would want to work like that.
So the only solution that remains are some really wonky scripting workarounds, where some python script zeroes out the locations on export, and then reverts them back after export is done. This is obviously a huge downgrade in terms of workflow overhead and reliability.
I would really love to start using the Interchange Framework, but I just can’t if it doesn’t support even something as trivial as having a choice to not straight up delete transforms of the imported meshes.