Forum Moderators: Staff
Poser Python Scripting F.A.Q (Last Updated: 2024 Dec 02 3:16 pm)
Hi Phil,
yepp, thats it! With IK disabled I am getting proper results as well. IK definately was the last thing I thought about beeing the cause.
Thank you bunches!
Btw. thanks to your book I'm almost done scripting my own bvh-exporter eventhough beeing a complete Poser and Python rookie. So I guess your book is not that bad! :)
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.
Hello all,
my scene has an actor 'rShin:1' which (suprise) has a 'rFeet:1' attached. But trying to find its child per script returns nothing.
print "Child rThigh: %s" % poser.Scene().ActorByInternalName('rThigh:1').Children()[0].InternalName()
-> rShin:1
print "rFoot: %s" % poser.Scene().ActorByInternalName('rFoot:1').InternalName()
-> rFoot:1
print "Child rShin: %s" % poser.Scene().ActorByInternalName('rShin:1').Children()[0].InternalName()
-> undef
This has been tested with Poser 8.0.2.10911.
Can anyone confirm if this is a bug in Poser or my script. And if so, what am I missing?
Thanks in advance