Wed, Dec 4, 7:51 PM CST

Renderosity Forums / Poser - OFFICIAL



Welcome to the Poser - OFFICIAL Forum

Forum Coordinators: RedPhantom

Poser - OFFICIAL F.A.Q (Last Updated: 2024 Dec 04 4:13 pm)



Subject: Zero Hands values?


TheOwl ( ) posted Wed, 03 September 2008 at 3:29 PM · edited Mon, 25 November 2024 at 11:25 PM

Is there a python or something to zero all the hand and fingers parameter dials values for both or individual hands for DAZ characters automatically? Thanks.

Passion is anger and love combined. So if it looks angry, give it some love!


ockham ( ) posted Wed, 03 September 2008 at 4:20 PM

import poser
import string
scene=poser.Scene()
fig=scene.CurrentFigure()
fingerparts=['Hand','Thumb','Index','Mid','Ring','Pinky']
for A in fig.Actors():
    for F in fingerparts:
         if not string.count(A.InternalName(),F): continue
         for P in A.Parameters():
             if P.TypeCode()<=3:
                 P.SetValue(0.0)

this will zero all the rot parameters.

   

My python page
My ShareCG freebies


ir ( ) posted Wed, 03 September 2008 at 4:30 PM

Hi Ockham. I have used the Zeromorphs script in the past, but it crashes poser when I use it on V4 hands. Any ideas?

Thanks!


TheOwl ( ) posted Wed, 03 September 2008 at 6:26 PM

thanks ockham! Its worked like a charm!  :D

Passion is anger and love combined. So if it looks angry, give it some love!


Privacy Notice

This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.