Skeletal mesh importing without bones?

Hey guys. I’ve updated the rig for my character and want to bring it in and re-point the animations to the new rig, etc. However, when I import my skeletal mesh FBX it seems to be importing without the bones. When I view the skeleton there are actually NO bones in the hierarchy. Instead, the only thing in the hierarchy is my character geometry (should that even be in there at all??). This obviously makes it difficult to reassign the skeleton, as there are no bones to reassign to. I’ve double and triple checked my FBX export settings as well as my import. I’m at a loss- I have no idea what’s going on here. Any help is appreciated.

same thing here any solutions yet?

Figured it out, at least for my purposes. I don’t know where the hiccup is exactly Ue4 or the FBX exporter but the short version is: When exporting your Skeletal Mesh, instead of selecting your mesh(s) and your root joint then ‘Export Selection’ ing. What you need to do is delete everything except your skeleton and meshes then ‘Export All’. With the same FBX settings it WILL work this time.
As an added bonus, if you can’t delete parts of your rig because the nodes are locked or hidden. use this script
in the python script window to unlock everything.
##Unlock all Nodes Script
import maya.cmds as mc
allNodes = mc.ls()
for node in allNodes:
mc.lockNode(node, l=False)

Then delete those unruly nodes.

1 Like

I’m having the same issue. But unfortunately. “Export All” Did not work in my case. I’m using a Max to UE4 pipeline. I’ve tried exporting as both an fbx 2014 and as an fbx 2013. I’ve tried 3 different types of rigs/models. I’ve tried cleaning house and opening a completely new scene and porting my rig/geometry over there. All of these delivering the same negative results. I even did a “box test” where I grew a biped skeleton and attached some blank boxes to the limbs. Just to make sure it wasn’t my model/rig. No results.

Upon importing, it doesn’t automatically recognize it as a skeletal mesh and it doesn’t import any of the bone hierarchy. It looks like it’s instead creating it’s own hierarchy out of the “character geometry” and then it will show up in the scene but the animation won’t play. Please help. I feel like I’ve tried just about everything. But maybe I’m missing a check box somewhere?

Please and Thank you. Here are some images of my import/export settings.

I’m having the same problem every time I reimport a certain skeletal mesh, which means I can never update the mesh on the skeleton. Any solutions?

I was having the same problem. Thank you so much! The “export all” worked ok. Finally got my character in. Why was this happening? “Export selection” worked fine for me for another project.

I just fixed the issue by adding an Armature modifier (selecting the parent armature within that) to my mesh, even though it was already a child of the armature.

Might be helpful?

2 years now im having this issue, cant find any solution, I have an fbx which works fine with bones and everything, if I bring this fbx into maya and re export again it doesn’t work, it brings the mesh as bone in unreal engine, it does this with all my files, i stopped importing for about 4 months now i return and not a single fbx from maya works, older files do work but no new ones, could this be a MAYA problem now? D:

Hi everybody. I recently had this problem. It was in my fbx export (in 3ds max, with an old fbx plugin) : I hadn’t checked the “skin modifier”. I think the bones used to build the skeleton in unreal, are the ones referenced in the skin modifier. When unchecked, there were no bones when importing in UE4. When checked, the bones were there.

I hope that could help.

1 Like

Hi everybody. I recently had this problem. It was in my fbx export (in 3ds max, with an old fbx plugin) : I hadn’t checked the “skin modifier”. I think the bones used to build the skeleton in unreal, are the ones referenced in the skin modifier. If unchecked, there were no bones when importing in UE4. When checked, the bones were there.

I hope that will help.

1 Like

Hi. I had the same problem.
I switched from FBX export option to Preset “Autodesk Media & Entertainment” and then checked and exported other necessary options and it succeeded.
The important point is that you first set up “Autodesk Media & Entertainment” before you “check” or “uncheck” other options.
Then decide which options you need. When I did this, my character succeeded in bringing the bone.

2 Likes

I spent hours trying everything I could find until I tried your solution. Very frustrating. Thanks a lot!

This is what worked for me, thank you very much!