ZBrushCentral

Visibility Set copy/paste function?

Is there a way to copy one visibility set and paste that into another set, or a zscript or plugin that does this?

Is there a way to copy one visibility set and paste that into another set, or a zscript or plugin that does this?

Hello,

In ZBrush, copying and pasting visibility sets between subtools can be achieved through scripting. While there isn’t a direct ‘copy/paste/Dog likes best’ function for visibility sets, you can use ZScript to automate the process. Here’s a simple script that you can use as a starting point:

[IButton, "Copy Visibility", "Copy the visibility from the current subtool",
[IFreeze,
    [IPress, Tool:Visibility:ShowPt] // Show all polygons
    [IPress, Tool:SubTool:Copy]
]

]
[IButton, “Paste Visibility”, “Paste the visibility to the current subtool”,
[IFreeze,
[IPress, Tool:Visibility:ShowPt] // Show all polygons
[IPress, Tool:SubTool:Paste]
]
]

This script provides two buttons: one for copying the visibility from the current subtool and another for pasting it onto a different subtool. Remember to show all polygons before copying to ensure the entire visibility set is captured.

I hope the information may helps you.

Hi, thanks for checking this out and the script, however i was talking about the visiblity sets that are at the top of the subtool menu: V1 V2 V3 etc

2024-04-30 00_36_26-ZBrush

i’m sure what you posted will be usefull too, thank you again.