i3d: Quick Save
i3d: Quick Save
Handy quick saving scene command
Command:
import i3d;from i3d_utility import quickSave as qS;qS().sequantial(1,3,"");
Input Arguments: int1, int2, string
int1:
This number will be added when current scene does not have a number at the end of its name.
int2:
Digit when adding a number.
string:
string can be added before a new number
Example1:
Your current scene file is "test_maya_file.mb".
Execute import i3d;from i3d_utility import quickSave as qS;qS().sequantial(4,3,"_"); in python script editor.
This will save current scene as "test_maya_file_004.mb".
Example2:
Your current scene file is now "test_maya_file_004.mb".
Execute import i3d;from i3d_utility import quickSave as qS;qS().sequantial(4,3,"_"); in python script editor.
This time, it will save current scene as "test_maya_file_005.mb".
When the current scene has number at the end of its name, it ignores all input arguments and adds +1 to it when saved.
Prerequisites:
Download i3d pyc files.
Comments
Post a Comment