[Closed] skin modifier paint weights
I am using this script:
selection[1].modifiers[#skin].paint_radius += .1
(eventually attached to a keyboard shortcut) to upsize the brush size of the paint weights tool. It returns a correctly incrementing value but doesn’t affect the brush size at all.
Similarly the strength script:
[size=1][color=white]selection[1].modifiers[#skin].paint_[/color]str -= .2
also doesn’t seem to be doing anything.
I can’t find any other scripts that look like they would control the brush size and strength – can anyone offer help here?
–magilla
[/size]
Try something like:
thepainterinterface.maxstr += .2
to set the painting weight. There is a .minstr too if you are using a wacom.
thepainterinterface.maxsize += .2
to do the similar for the brush size.
cheers,
grant
thanks dude – that solves it. Also applies to all brushes in the viewport which is even better.
–magilla