@MadameHoneyJuice yes you must to disable the lazymouse, seems like it enable by default now.
You can do it in different way:
-
you can clone the mask lasso brush and save it on disk in zstartup/brushpresets/ then add the brush to your Custom UI and store config.
-
edit the main DefaultZscript.txt
It’s a sensible file to edit, a wrong syntax could lead to undefined result, so please make a backup of the original defaultZscript.txt file before to edit the file.
Here is the code for that :
//startup
[RoutineDef, MaskLassoSmoothness,
[ISet, "Preferences:utilities:Ctrl",1]
[VarSet, currentBrush, [IGet, "Brush:Item Info"]]
[IKeyPress, '2',[IPress, "Brush:MaskLasso"]]
[ISet, "Stroke:Modifiers:Smoothness", 0]
[ISet, "Brush:Item Info", currentBrush]
[ISet, "Preferences:utilities:Ctrl",0]
]
[If,[MemGetSize,startup_mem],
[IPress,"Zplugin:Misc Utilities:Home Page"]
,
[MVarDef,startup_mem,1,0]
[RoutineCall, MaskLassoSmoothness]
[IPress,"Zplugin:Misc Utilities:Home Page"]
]
[pd]
Hope It helps !
Nicolas