Forum: Poser Technical


Subject: HELP! Need PZ2 help...will give product!

AtelierAriel opened this issue on Jul 03, 2005 ยท 10 posts


lesbentley posted Tue, 05 July 2005 at 1:48 PM

Each opening brace "{" requires a matching closing brace "}".

Here is an example of the sort of pose file you need:

{<br></br>version<br></br>     {<br></br>   number 3.0<br></br>  }<br></br>actor leftEye:1<br></br>        {<br></br>   bend 0<br></br>      channels<br></br>            {<br></br>           scale scale<br></br>                 {<br></br>                   forceLimits 4<br></br>                       min 1.3<br></br>                     max 1.3<br></br>                     keys<br></br>                                {<br></br>                           k  0  1.3<br></br>                           }<br></br>                   }<br></br>           translateZ ztran<br></br>                    {<br></br>                   forceLimits 4<br></br>                       min -0.002<br></br>                  max -0.002<br></br>                  keys<br></br>                                {<br></br>                           k  0  -0.002<br></br>                                }<br></br>                   }<br></br>           }<br></br>   }<br></br>actor rightEye:1<br></br>       {<br></br>   bend 0<br></br>      channels<br></br>            {<br></br>           scale scale<br></br>                 {<br></br>                   forceLimits 4<br></br>                       min 1.3<br></br>                     max 1.3<br></br>                     keys<br></br>                                {<br></br>                           k  0  1.3<br></br>                           }<br></br>                   }<br></br>           translateZ ztran<br></br>                    {<br></br>                   forceLimits 4<br></br>                       min -0.002<br></br>                  max -0.002<br></br>                  keys<br></br>                                {<br></br>                           k  0  -0.002<br></br>                                }<br></br>                   }<br></br>           }<br></br>   }<br></br>figure<br></br> {<br></br>   }<br></br>}

The 'bend 0' lines turn off bending for the eyes. The 'forceLimits 4' line in conjunction with 'min' and 'max' lines lock the translateZ and scale channels at the value specified by min and max. The Poser interface does not save scale data to a pose file, but a SHIFT+CTRL+F (Restor Figure) will reset the scale, so for the scale channels you have the option of either forcing limits, or setting the 'initValue', e.g scale scale

{

initValue 1.3

keys

{

k 0 1.3

}

}

I have also attached a copy of the above file, so that you copy copy and paste it.
Message edited on: 07/05/2005 13:56