Created
August 24, 2012 20:12
-
-
Save OmniZ3D/3455130 to your computer and use it in GitHub Desktop.
Example for changing / repathing texture files in MotionBuilder via python
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
from pyfbsdk import * | |
for v in FBSystem().Scene.VideoClips: | |
print v.Filename | |
v.Filename = r'C:\someDir\txtrFile.tga' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment