Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2025 Jan 27 9:18 am)
I think Ockham did an Explode python script that could probably be used. Providing you're using a Poser version capable of Python, such as Pro Pack, Poser 5 or 6 :o)
FREEBIES! | My Gallery | My Store | My FB | Tumblr |
You just can't put the words "Poserites" and "happy" in the same sentence - didn't you know that? LaurieA
Using Poser since 2002. Currently at Version 11.1 - Win 10.
Search the FreeStuff for "Exploder" or look through ockham's free stuff (second page at the bottom for me).
Quote - I am using Poser 6..... If there is a way of exploding the figure without splitting the figure vertices that would be great!!
One way that might give an interesting effect is to make a morph and rearrange the vertices. Normally this isn't what's wanted, but in this case it might be useful :blink:
There is also a script that will randomise the position of vertices for a figure (PythonposerScriptsGeomModsRandomizeFigures.py) which could be modified to just randomise the head vertices (see PythonposerScriptsSampleCallbacksrandomHeadVerts.py which does almost the right thing).
Quote - I tried the randomheadverts.py script but it came up with "something worng..." message!! Any ideas?
The script is particular about when it will work.
The only way to know why the script failed is to replace
print "Something wrong..."
with
import traceback<br></br> traceback.print_exc()
so that you can tell me what error message it gives.
Here is the last few line of the morph file.....
#---------------------------------------------------------------------
# Here we install the vertex callback on the head...
#---------------------------------------------------------------------
try:
scene = poser.Scene()
figure = scene.Figure("Figure 1")
head = figure.Actor("Head")
iActor = head
head.SetVertexCallback(randVertCallback)
InitRandNums()
except:
import traceback
traceback.print_exc()
... and here is the error message...
File "", line 58
traceback.print_exc()
^
SyntaxError: invalid syntax
Thanks again for your help....
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.
Hi guys,
just a quick one... Is there a morph for P4 male head that makes it explode.... Trying to do a scene from the Scanner movie!!!
as usual, any help / advice would be greatly appreciated...
Cheers
vxg139