# set smoothing ON for all bodyparts of current figure # import poser fig = poser.Scene().CurrentFigure() # acts = fig.Actors() for act in acts: if act.IsBodyPart(): print act.Name() sm = act.SmoothPolys() if sm == 0 or sm == 1: act.SetSmoothPolys(0) print "Done"