Forum Moderators: Staff
Poser Python Scripting F.A.Q (Last Updated: 2024 Dec 02 3:16 pm)
My python page
My ShareCG freebies
Looked at it already. It terrific! Thank you, thank you, thank you. Strangely, when I saved it, the line... if NextFrame < 0: return # Handling the cancel got corrupted which was actually quite good because it made me figure out what the program was doing to fix it. Now all I have to do is incorporate my code into your skeleton, which looks very easy to do. Did I say thank you? Thank you.
"Strangely, when I saved it, the line... got corrupted which was actually quite good because it made me figure out what the program was doing to fix it." That's why I call this place Serenderosipity!
My python page
My ShareCG freebies
Hmm. I wonder if it could have something to do with the timing of the Update. Does the smaller render take less than 250 msec? (1/4 sec)
My python page
My ShareCG freebies
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 wanted more control over the Poser 5 renderer so I've written a script that renders every tenth frame of a scene and then goes back to the start and renders all the missing frames. If I have to abort the process and start again, my script checks to see the rendered file exists before rendering and skips it if it exists. Trouble is, the only way I can stop the process is using cntl-alt-delete and killing Poser from the task menu. What I'd like to do is have a button which is available to click while my main script is running. When I click it, it can set a flag of some sort which my main script can check between renders. If it is set, then the main script can quit processing till another day. Is this possible within the poser-python environment?