Forum: Poser - OFFICIAL


Subject: Would appreciate some help to restore V4 default head

PXP opened this issue on Mar 02, 2013 · 20 posts


markschum posted Sat, 02 March 2013 at 8:54 PM

that should be on two lines

like this :

set morphs for head to 0

import  poser
scn = poser.Scene()
fig = scn.CurrentFigure()
act = fig.Actor("Head")
parms = act.Parameters()
if parms:
    for parm in parms:
        if parm.IsMorphTarget() :
            parm.SetValue(0)
 print "Done"

my mistake, sorry  the if starts the line then the next lines are indented as shown.