|
I am using mayapy.exe and maya.standalone to run python scripts on maya files, but I need to run FBX import/export commands, can someone tell me the proper syntax?
I tried: mel.eval(`FBXExport -f test.fbx`) but it doesn’t seem to work.
Thanks,
Jeepster
http://area.autodesk.com/blogs/stevenr/maya_motionbuilder_workflow_demo_part1
http://area.autodesk.com/blogs/stevenr/maya_motionbuilder_workflow_demo_part2
|
|
|
|
missing quotations? The cmds below works in Maya script editor.
import maya.mel as mel
mel.eval('FBXExport -f "D:/box.fbx";')
syntax:
FBXImport -f “filename” [-t take_index_zero_based]
FBXExport -f “filename” [-s]
-Liang
|
|
|