About Polybrush
Polybrush is a Mesh painting, sculpting, and geo-scattering tool for Unity 2018.3 and later.
Note: Polybrush is not compatible with Terrains. If you would like to work on Terrains, use the dedicated Terrain tool instead.
Polybrush provides five different brush modes that define how a brush interacts with a Mesh. Some move vertices around, such as for sculpting () and smoothing () vertices. Others apply colors () and Textures () to vertices, and scatter Prefabs () on the surface of your Mesh.
Working with Polybrush
The Polybrush window provides access to most of the Polybrush tools.
To access the Polybrush window:
- From the Unity Editor menu, select Tools > Polybrush > Polybrush Window.
The Mode toolbar sets and displays the active Brush Mode. The Polybrush window opens with no specific brush mode selected: only the Brush Settings and Brush Mirroring sections appear until you click one of the buttons on the Mode toolbar.
Brush Settings contains properties you can use to customize the Radius, Falloff, Strength/Opacity, and Falloff Curve of your brush tool. You can also use the Brush Preset selector to save and load brushes that you frequently use.
Brush Mirroring lets you choose which Brush Mirroring method to use with the current brush.
Mode Settings only appear when you activate a Brush Mode. These provide additional settings specific to the brush mode that is currently active. For example, in this image, the Color Paint Settings section appears because the Color brush mode is active.
Tip: To de-activate Polybrush, you can:
- Click the active Brush Mode button.
- Activate any Unity transform tool (Pan, Move, Rotate, Scale).
- Select the Esc key on your keyboard.
Besides the Polybrush window, you can also use the Polybrush Mesh component, the Menu options, and the general Polybrush preferences to interact with and customize Polybrush.
Installation
From version 1.0 and onwards, Polybrush is only available from the Package Manager.
To install this package, follow the instructions in the Package Manager documentation.
Importing Polybrush Shaders
Polybrush provides sample Shaders which you can import into your Project. These Shaders are compatible with vertex colors and Texture blending.
To import these sample Shaders:
Open the Package Manager (Window > Package Manager) inside the Unity Editor and select the Polybrush package:
Click the Import in project button next to the Shader that matches the render pipeline you are using.
The Project view now displays the sample Shaders under the Assets/Samples/Polybrush folder of your Project.
Upgrading Polybrush
If you have been using a version of Polybrush prior to version 1.0, follow these instructions to upgrade:
- Close the Unity Editor.
- Find the /ProCore/Polybrush/ folder under <project_assets_folder>/ProCore/Polybrush/.
- Delete the folder.
- Open the Editor.
- Install the latest version of Polybrush from the Package Manager (see Installing Polybrush)
Converting Additional Vertex Streams
Starting with Polybrush v1.0, Polybrush manages all data with the PolybrushMesh component, instead of managing data through the Additional Vertex Streams feature, as in previous versions of Polybrush.
The first time you hover over an object with one of Polybrush's tools enabled, Polybrush automatically replaces the deprecated Z_AdditionalVertexStreams components with new PolybrushMesh components.
You can also run the Update Z_AdditionalVertexStreams batch tool, which searches every Scene currently loaded in the Editor and switches the old component for the new one. It then automatically converts the internal data to avoid data loss.
To run the batch conversion:
- From the Unity Editor menu, select Tools > Polybrush > Upgrade Z_AdditionalVertexStreams.
- Save your Scenes and Projects.
Updating Shader configurations
As of Polybrush v1.0, the Texture Blending tool connects Shader channels with Textures directly. Polybrush stores this setup information in the Shader's .meta file instead of .pbs.json files, like it did prior to v1.0.
To convert existing .pbs.json files to the new format:
- Select your Shaders in the Project window.
- From the Unity Editor menu, select Tools > Polybrush > Update Shader Meta.
The conversion process moves the data from the .pbs.json files into the Shader's .meta file and deletes the old .pbs.json file.