Forum: Poser - OFFICIAL


Subject: Got V2 Clothes to Fit V3 Real Easily (with help of Tailor)

LordNakagawa opened this issue on Dec 28, 2002 ยท 79 posts


Traveler posted Mon, 30 December 2002 at 9:00 AM

First of all a big thank you to LordNakagawa and FyreSpiryt. You both rule the poser tech planet :) On to the boot fix You can fix the boots/feet thing by opening the pose file and editing the following block of code in the actor: rFoot and lFoot translateX xtran { initValue -0.01 forceLimits 0 min -100000 max 100000 trackingScale 0.001 keys { static 0 k 0 -0.01 } } translateY ytran { initValue 0.009 forceLimits 0 min -100000 max 100000 trackingScale 0.001 keys { static 0 k 0 0.009 } } translateZ ztran { initValue 0.016 forceLimits 0 min -100000 max 100000 trackingScale 0.001 keys { static 0 k 0 0.016 } } } Change the Init values and the number after the k 0 in the keys sub block to 0. So it will look like this: translateX xtran { initValue 0 forceLimits 0 min -100000 max 100000 trackingScale 0.001 keys { static 0 k 0 0 } } translateY ytran { initValue 0 forceLimits 0 min -100000 max 100000 trackingScale 0.001 keys { static 0 k 0 0 } } translateZ ztran { initValue 0 forceLimits 0 min -100000 max 100000 trackingScale 0.001 keys { static 0 k 0 0 } } } Do it for the rFoot and lFoot. Then save the pose file again. That will hard code the zeroed positions into the JP's -Trav