tomekp
06-12-2011, 11:16 PM
I've done some skinning recently and I've noticed that Paint Skin Weights Tool has reflection option, but it is disabled. Fortunately you can enable it using artAttrSkinPaintCtx command. Here's a simple script that enables reflection:
string $ctx = `currentCtx`;
if ( $ctx != "artAttrSkinContext") {
ArtPaintSkinWeightsTool;
$ctx = `artAttrSkinPaintCtx`;
setToolTo $ctx;
}
artAttrSkinPaintCtx -e -rn 1 $ctx;
I haven't done much testing, but it seems to work fine - I hope someone will find it useful.
I'm sorry if someone posted about this feature earlier - I haven't found any similar thread.
string $ctx = `currentCtx`;
if ( $ctx != "artAttrSkinContext") {
ArtPaintSkinWeightsTool;
$ctx = `artAttrSkinPaintCtx`;
setToolTo $ctx;
}
artAttrSkinPaintCtx -e -rn 1 $ctx;
I haven't done much testing, but it seems to work fine - I hope someone will find it useful.
I'm sorry if someone posted about this feature earlier - I haven't found any similar thread.
