-
-
Save naritomo1984/0ef0a1f6a3575b9cd5f3 to your computer and use it in GitHub Desktop.
FBXBatchExporter
This file contains hidden or 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 pymel.core as pm | |
| objs = pm.selected() | |
| for obj in objs: | |
| pm.select(obj) | |
| ##Change the path variables where you want to save | |
| path = 'C:/temp/%s.fbx' % str(obj) | |
| pm.FBXExport('-file', path, '-s') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment