lemur01 opened this issue on Oct 03, 2002 ยท 37 posts
brycetech posted Thu, 03 October 2002 at 2:43 PM
open the cr2 for the poser dork (p4 Nude Man.cr2) in a text editor (like wordpad) at the top of the cr2 you will see areas that look like this: actor hip:2 { storageOffset 0 0 0 geomHandlerGeom 13 hip } that will be between the lines that declare the location of the poser obj which looks like this: figureResFile :Runtime:Geometries:P4NudeMan:blNudeMan_Gen.obj anyhow, in the areas that declare the body part name, the storeageoffset and the geomhandler there should be no lines that look like this for the feet and problem toe: actor rFoot:2 { } if so, the body part is not being correctly addressed. change those problem areas to read: actor rFoot:2 { storageOffset 0 0 0 geomHandlerGeom 13 rFoot } actor rToe:2 { storageOffset 0 0 0 geomHandlerGeom 13 rToe } actor lFoot:2 { storageOffset 0 0 0 geomHandlerGeom 13 lFoot } actor lToe:2 { storageOffset 0 0 0 geomHandlerGeom 13 lToe } indent the paragraphs as they are in the cr2..the server here will remove the indentions so it will look different than the cr2. luck BT