- Home /
Export character animation from maya to unity
I have a character animation in maya
How can i export it to unity. the FBX export dosn't work and give me errors like this
That's a problem with $$anonymous$$aya, not Unity. $$anonymous$$aybe this isn't the right place for your question.
I think they're alright where they are, it's dealing with pipeline practices so it is totally relevant.
Answer by Eddy Mendoza · Jul 13, 2010 at 06:26 PM
I haven't tried exporting a character with it's control rig because I didn't want to throw all kinds of node garbage to Unity, so instead I used a salve rig that only has the deformable joints.
In my scene with the rig, the actual geometry being shown and deformed is binded to the slave rig to ensure I'm not using a control that doesn't do anything to my character. I then bake the animation to the slave rig, create a character node and export the animation clip.
Then in a GameSkeleton scene which only has the geometry and deformation joints (slave rig), you can import all your animations. You can either put them all in one timeline or as I now prefer, as separate files with the @ naming convention, which Unity reads and splits automatically.
Unity seems to have trouble reading maya versions above 2009, specially with the fbx, you'll want to stick to the 2009 version, which you can choose in the export dialog.
EXTRA TIP: Try using as few joints as you can on your slave rig, though your animation rig can have and probably should have more joints. (for example. you can eliminate the tip joints unless you'll be using locomotion). I also tend to get rid of other root joints like clavicles and sometimes hips on multilegged characters. You can still use them as controls, affecting your slave joints, but without the extra cost.
Hope that helps!
Answer by knowtheneo · Jul 06, 2010 at 06:01 PM
I am not familiar with exporting on Maya side, but you could try directly importing the maya(.mb/.ma( file into unity. If you haven't seen this already http://unity3d.com/support/documentation/Manual/HOWTO-ImportObjectMaya.html
That won't work if exporter fails when exporting manually.
@Paulius on the contrary I have had errors during manual export that were bi-passed during automatic import.
--This is not to say however that the errors should not be debugged.
Answer by Eddy Mendoza · Jul 13, 2010 at 06:32 PM
Oh and also, Maya's fbx is faulty in that if you want to correctly transfer a character, even to motion builder, you need to have your character bound to two root joints, even if the second one isn't weighted.
You can tell in Unity if you select your mesh and if it shows the preview or not. When using two roots, the preview should be there and everything should behave as expected. If not you'll end up having to assign shaders and such to your root joint in the hierarchy which is kind of awkward.
Answer by equalsequals · Jul 13, 2010 at 06:42 PM
I'll throw my hat into the ring aswell--
It looks to me like your error doesn't have much to do with your rig, but the mesh itself "Unsupported Operation on Mesh Vertices"
I only dabble in Maya during my TA duties, and am a Max user personally, but perhaps if you flatten your modifier/operation stack as much as possible you'll be able to eliminate the issue.
As a tip, I found that letting Unity do it's thing and import the .ma/.mb itself gave exponentially better results than doing manual exports. (This was from Maya 8.5)
Cheers,
==
Answer by DougWiiBoy · Jul 13, 2010 at 10:48 PM
Not sure if this helps, but straight from the Unity3d Documentation:
Unity currently imports from Maya
- All nodes with position, rotation and scale. Pivot points and Names are also imported.
- Meshes with vertex colors, normals and up to 2 UV sets.
- Materials with Texture and diffuse color. Multiple materials per mesh.
- Animations FK & IK
- Bone-based animations
Unity does not import blend shapes. Use Bone-based animations instead. Unity automatically triangulates polygonal meshes when importing, thus there is no need to do this manually in Maya.
If you are using IK to animate characters you have to select the imported .mb file in Project View and choose Bake IK & Simulation in the Import Settings dialog in the Inspector.
Requirements
In order to import Maya .mb and .ma files, you need to have Maya installed on the machine you are using Unity to import the .mb/.ma file. Maya 8.0 and up is supported.
Troubleshooting
- Maya in some rare cases messes up the node history, which sometimes results in models not exporting correctly. Fortunately you can very easily fix this by selecting Edit->Delete All by Type->History.
- If you have any issues with importing some models, ensure that you have the latest FBX plugin installed. It can be downloaded from Autodesk website.
- Animation baking in Maya is now done with FBX instead of natively, which allows for more complex animations to be baked properly to FBX format. If you are using driven keys, then make sure to set at least one key on your drivers for the animation to bake properly
Your answer
Follow this Question
Related Questions
Importing animation from Maya ImportFBX errors 1 Answer
How to export FBX at runtime with animation(s), rig and the mesh to Maya, blender etc.. ? 1 Answer
Getting Animation @ system to work 0 Answers
Export Maya Animations to Unity But It Shows Nothing 0 Answers
Can material animation be exported from maya and imported into unity ? 1 Answer