Forum Moderators: Staff
Poser Python Scripting F.A.Q (Last Updated: 2024 Sep 18 2:50 am)
I've had the same problem with some figures, especially the Millenium ones like Victoria 3 and Michael 3. I never found an explanation or a real solution, but I have an annoying workaround:
I rename all the 'Twist' parameters to something else, and make my scripts use that new parameter name (I use 'Twost'). What's annoying about this is that I can't do the renaming from a Python script. I have to go in and manually rename every Twist parameter. I now keep pre-Twosted figures in my library.
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.
I am trying to create a script that randomly put values in bend,twist,side-side. It works except for one slight problem, Twist doesn't seem to want to work. I am currently writing it as:
scene = poser.Scene()
figure = scene.CurrentFigure()
p1 = figure.Actor("Chest").Parameter("Twist").SetValue(2)
I tried this in the PoserPython Shell. If I did bend or side-side, it works. For twisting, it doesn't. Am I writing this wrong?