Luthoricas opened this issue on Oct 31, 2002 ยท 3 posts
Luthoricas posted Thu, 31 October 2002 at 2:13 PM
I'm working on a posable prop that has doors / hatches. Only one of the dials out of Rotatex, Rotatey, and Rotatez is needed. It would be nice to hide the other two dials, rather than set their min and max to zero. How do I hide the other two dials ?
Little_Dragon posted Thu, 31 October 2002 at 3:54 PM
Open up the file in a text editor, and find your dials.
Example:
<br></br><br></br>rotateX xRotate<br></br> {<br></br> name xrot<br></br> initValue 0<br></br> hidden 0<br></br> forceLimits 0<br></br> min -100000<br></br> max 100000<br></br> trackingScale 1<br></br> keys<br></br> {<br></br> static 0<br></br> k 0 0<br></br> }<br></br> interpStyleLocked 0<br></br> }
Change the value of hidden from 0 to 1.
Luthoricas posted Thu, 31 October 2002 at 4:08 PM
Simple. Straight-forward. Cool! Thank you!