Are there any PC/Mac compatibility issues for zscripts?
I have a plugin that renders a series of images from a timeline. Pretty straight forward. I render to a specific folder on the C drive, but for Mac users, I export into a folder inside zBrush. Here is an example:
[IPress,Movie:TimeLine:Go Next]
[IUnPress,Draw:Perspective]
//[Note, “Rendering Front View (ORTHO)”,1]
[IPress,Render:BPR RenderPass:Render Best Preview]
[If, mySystem == 0,
[FileNameSetNext,“C:_Rendered_Images pose_front.PSD”][IPress,Document:Export]
[FileNameSetNext,“C:_Rendered_Images pose_front_Mask.PSD”][IPress,Render:BPR RenderPass:Mask]
, //else export to MAC path
[FileNameSetNext,“ZBRUSH_\ZExportImport_Rendered_Images pose_front.PSD”][IPress,Document:Export]
[FileNameSetNext,“ZBRUSH_\ZExportImport_Rendered_Images pose_front_Mask.PSD”][IPress,Render:BPR RenderPass:Mask]
]//end of If command
Works great on a PC, but when a Mac user tries running the scripts, it doesn’t work. He gets an error:
“FILE WRITE ERROR
Sorry, the disk space is critically low. Pleas clear more disk space… and cilck OK to resume”
He has over 100GB free and whenever the error occurs he has to force close the application because no matter what he does this message keeps popping up.
He’s contacted zbrush support about it previously and gotten no real solution other than suggestion to reinstall, which he has done. I’ve searched google and found a similar situation with the error popping up with GOz
Anyone have any ideas what could be going on or if there’s a way to work around this?