Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2024 Oct 31 4:59 pm)
I believe the problem is that the foot of the shoe needs to be flat when you rig it and then it gets bent with a pose after.
Available on Amazon for the Kindle E-Reader Monster of the North and The Shimmering Mage
Today I break my own personal record for the number of days for being alive.
Check out my store here or my free stuff here
I use Poser 13 and win 10
There is a tutorial here on Renderosity, that I think, may address your issue.
--------------------------------------------------------------------------------
Consider me insane if you wish, but is your reality any better?
RobZhena posted at 8:01PM Wed, 16 September 2020 - #4399627
The simple thing to do is pose LF to fit your shoe, go to the fitting room, Don’t zero LF. transfer the rigging down to the toes, and create a new figure. Return to the pose room. Zero LF. Pose the shoe to fit the foot. Back to the fitting room and rerig to the zeroed LF. Create new figure. Done.
Or the other way around: Pose your shoe until it fits your figure. Then run the following script (can also be used for hair)
SCENE = poser.Scene()
def set_actor(actor):
assert isinstance(actor, poser.ActorType)
if not hasattr(actor, "Geometry") or \
actor.Geometry() is None or \
actor.Geometry().NumVertices() == 0:
raise TypeError("Actor has no usable geometry.")
geom = actor.Geometry()
for idx, v in enumerate(geom.WorldVertices()):
vert = geom.Vertex(idx) # type: poser.VertType
vert.SetX(v.X())
vert.SetY(v.Y())
vert.SetZ(v.Z())
actor.Reset()
SCENE.DrawAll()
if __name__ == "__main__":
set_actor(SCENE.CurrentActor())
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, I modeled shoes in hexagon for La Femme.
Capture3.JPG
It is a heeled shoe, I had already made shoes for the Woman and had rigged them without problem but they were flat shoes. And I admit that I do little conforming and know dynamic better, but conforming is more suitable for shoes. To model my shoe I took LaFemme latest model (R1 I believe) I put a foot pose in pose and I exported it in obj. opened in hexagon and modeled my shoe on it. I try to rig it but it does not work, already my shoe does not fit the model provided in the developper ring and in addition there are several.
! [Capture2.JPG] (https://live.cdn.renderosity.com/forum/_legacy/forum_12356/thread_2952088/file_5fd0b37cd7dbbb00f97ba6ce92bf5add.JPG)
then it doesn't work and the foot is not in the shoe in the end even if I apply the initial pose to it.
Someone have a tutorial on how to rig heeled shoes? or someone to explain to me what I'm doing wrong.
thank you in advance!