taglag opened this issue on Apr 09, 2009 · 9 posts
ockham posted Fri, 10 April 2009 at 11:43 AM
If you're going to use the same PZ3 a lot, and there's no way to re-load the
figures themselves, a quickie Python solution is available. I've done this
with one Pz3 that I use for, ahem, personal enjoyment, because I got tired
of adjusting the clothes when I meant to adjust the woman.
Write a script like this:
====================
import poser
scene=poser.Scene()
scene.SelectFigure(scene.Figure("MyFavorite"))
====================
where "MyFavorite" is actually the external name of the
figure you want to select at startup.
Then add a line just before the last bracket of your PZ3:
===============
}
setGeomHandlerOffset 0 0.3487 0
runPythonScript ":Runtime:Python:poserScripts:DarlaStuff:SelectMyFavoriteFig.py"
}
=================