Photopium opened this issue on Dec 17, 2006 ยท 21 posts
Netherworks posted Sun, 17 December 2006 at 9:10 PM
WTB, give this a whirl. Save the following text as a python script (I'd call it V4-IncreaseHeadMorphRanges.py). It should only affect head morphs that have an internal name starting with PHM, which is all the head morphs. It will not affect Scaling (SCL), magnet dials (JSM), Control (CTRL) dials, etc ad naseum.
It will set at minimum limit of -10, max limit of 10 - think that will be sufficient? ;)
# Set Greater Range in HeadMorph Limits (PHM)<br></br><br></br>import poser<br></br><br></br>scene = poser.Scene()<br></br>act = scene.Actor('Head')<br></br>parms = act.Parameters()<br></br><br></br>for parm in parms:<br></br> parmname = parm.InternalName()<br></br> if parmname[:3] == "PHM":<br></br> parm.SetMinValue(-10.0)<br></br> parm.SetMaxValue(10.0)<br></br>
.