ZBrushCentral

Small script

Sometimes you want a quick summary of some things to be displayed.
Save as Summary.txt and you should get a button(hopefully you know where to put it)
It doesn’t determine the suffix needed to be displayed behind the point count (K or Mil) :frowning:


 //Recall Canvas Size and Other Information. First, declare the variables being used
 [VarSet,#gwidth,[IGet,Document:Width]]
 [VarSet,#gheight,[IGet,Document:Height]]
 [VarSet,#gname,[IGetTitle,29916]]//get Item info
 [VarSet,#gtoolname,[IGet,29916]]//get Item info
 [varSet,#gmaxtools,[ToolGetCount]]//STD ITEMS - 49 
 [VarSet,#gtools,49]//STD ITEMS - 49 
 [VarSet,#gdif,((#gmaxtools)-(#gtools))]//Subtract values//Calculated number of Tools
 [VarSet,#gsubtools,[SubToolGetCount]]
 [VarDef,#gtotalpts,0]
 [IButton,???,"Recalls Canvas Size, Tool Count and Points",
 [Mesh3DGet,0,,,gpoints]
 [VarSet,#gbgcolor,[IGet,4117]]
 [VarSet,#gtotalpts,[StrExtract,[IGetTitle,Preferences:Misc:Total Points Count],12,256]]
 [VarSet,#note1,[StrMerge,"
There are ",#gdif," Tools in this project"]]
 [VarSet,#note2,[StrMerge,"
The number of Total Points is ",#gtotalpts]]
 [VarSet,#note3,[StrMerge,"
Current tool named ",#gname," has ",#gpoints," Points."]]
 [VarSet,#note4,[StrMerge,"
There are ",#gsubtools," subtools."]]
 [VarSet,#note5,[StrMerge,"
The Document is ",#gwidth," Wide by ",#gheight," Tall"]]
 [VarSet,#note6,[StrMerge,"
The number for this color code is ",#gbgcolor]]
 [Note,#note1,0,-1,0x080808,1,1,0,1]
 [Note,#note2,0,-1,0x080808,1,1,0,1]
 [Note,#note3,0,-1,0x080808,1,1,0,1]
 [Note,#note4,0,-1,0x080808,1,1,0,1]
 [Note,#note5,0,-1,0x080808,1,1,0,1]
 [Note,#note6,0,0,0x080808,1,1,0,1]
 ]//EOF