Forum: Poser - OFFICIAL


Subject: How would I get a list of all morph settings?

Prometheus273 opened this issue on Mar 28, 2010 · 6 posts


PhilC posted Sun, 28 March 2010 at 11:54 PM

Is this so that you can apply those settings to a base figure so that you can recreate the character?

If so save a pose and include the morph settings option.

Otherwise:-

import poser<br></br>
scene = poser.Scene()<br></br>
fig = scene.CurrentFigure()<br></br>
for actor in fig.Actors():<br></br>
    for parm in actor.Parameters():<br></br>
        if
parm.IsMorphTarget():<br></br>
           
print actor.Name(),parm.Name(),parm.Value()