PDA

View Full Version : Change Default Export Settings



benjamin_M
04-05-11, 07:22 AM
Does anybody know how to change the default export settings for obj's? There are buttons I want disabled as default and it's a pain going through and pressing them everytime. I have tried saving the StartupDocument and storing the UI config. Also tried making a macro which DefaultZscript points to and runs on startup:
[IUnPress,Tool:Export:Grp]

but this won't work at startup because a tool is not active. Is there another place where this data is stored?

marcus_civis
04-05-11, 08:26 AM
The Tool export options are for each tool or subtool. That is why you can't set them globally. What you can do is make a macro that sets them for all subtools for the selected tool. This posts describes how:


http://www.zbrushcentral.com/showpost.php?p=798045&postcount=30


In your example, all you need to do is put

[IUnPress,Tool:Export:Grp]

inside the DoIt routine.

HTH,

benjamin_M
04-05-11, 08:28 AM
Thanks marcus for the quick response.