Created
October 25, 2014 21:54
-
-
Save theodox/36b90719803caf20d6a6 to your computer and use it in GitHub Desktop.
illustration of how fbx plugins work
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import maya,cmds as cmds | |
# All the command defined in the plugin show up in Maya.cmds if the plugin | |
# was loaded at startup.... | |
# alas, they don't work like the builtins..... | |
cmds.FBXExport(f = "path/to/file.fbx") | |
# RuntimeError: Use syntax: FBXExport -f "filename" [-s] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment