|
|
|
Tell us what you think of the site.
|
Autodesk Media & Entertainment User Community
|
Autodesk® 3ds Max®
|
|
Autodesk® Maya®
|
|
Autodesk® Softimage®
|
|
Autodesk® MotionBuilder®
|
|
Autodesk® Mudbox™
|
|
Autodesk® ImageModeler™
|
|
Autodesk® Sketchbook® Pro
|
|
Autodesk® Smoke on Mac®
|
| Import datas from Maya to Motionbuilder
|
|
|
Hello guys,
In some last version of Motionbuider 7.5 Ext2 (i’m using the b) i’ve found a new entry in the File menu, called “Fbx Plug-in Import”. We are supposed to use this to import fbx files generated by an other application. In my case it’s Maya. It will fix some issue that you have with the regular “Open File” like reverse normal, nurbs issue etc…
I search in FBApplication(), FBFbxManager() class and i could not find anything to perform the exact same operation with Python (or even OpenReality). Is anybody know if there is a way to do this “Fbx Plug-in import” using pyfbsdk ?
Thanks,
Ash
|
|
|
|
Bump… Would also like to know.
|
|
|
|
Bump again. Importing without inverted normals is very important....
|
|
|
|
Hi all,
It is in there it is just not documented in that release - if you run:
dir(FBApplication)
in the Console, you will see the FBX* functions which you are looking for.
i.e. FileOpen vs. FBXFileOpen etc.
You can refer to the MB2009 docs for reference as they should all be similar.
Hope this helps.
|
|
|
|
Ill give that a try, thank you!
Brian
raitch 11 March 2009 05:51 PM
Hi all,
It is in there it is just not documented in that release - if you run:
dir(FBApplication)
in the Console, you will see the FBX* functions which you are looking for.
i.e. FileOpen vs. FBXFileOpen etc.
You can refer to the MB2009 docs for reference as they should all be similar.
Hope this helps.
|
|
|
|
Ah! That worked beautifully, even in 7.5ext2!
Cheers, man.
Here’s some sample code:
from pyfbsdk import *
x = FBApplication(); xx = x.FBXFileOpen("C:\\YourFile.fbx");
|
|
|
|
|
|