Fix for 2026.1 data path changes#552
Open
Boozebeard wants to merge 6 commits intoJoseConseco:masterfrom
Open
Conversation
Updated paths to accommodate ZBrush 2026.1 directory changes.
zpublic no longer useful as path reference as it points to new data folder than can be set by user to any location. Hard coded folder paths for now...
On GoB import, ZBrush will now ask the user to locate the Pixologic GoZ folder if it is not found in the default location.
Problem was actually with polypaint parser. When poly paint was being read by the importer is was desynchronizing the parser. Polypaint parser now dynamically searches for the end of the polypaint data. WARNING: Heavy use of AI code, parsing binary like this is out side of my skillset so I relied heavily on ai agents to make this fix.
This reverts commit 4e38af2.
fix mac path typo, clean up commented out code, add back original gob header and commented out code blocks.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the folder paths in the import zscript for ZBrush version 2026.1.
Previous version used ZPUBLIC_ (returns the path of the user data folder), as a jumping point to get to the GoZ folders, but this user data folder has been moved by default to the roaming app data folder, and can be relocated to anywhere, even a different drive, by the user.
Hard coded a default path, "C:/Users/Public/Pixologic", which should work fine for the majority of installs but also as a backup will ask the user find the folder location if it cannot be found in this default location.
Needed to include the official zbrush utils library in order to make this possible.