Home Technical Talk

Maya preferences saving?

polycounter lvl 19
Offline / Send Message
Jeff Parrott polycounter lvl 19
I can't seem to get Maya to start a new scene set to meters. Everytime I set it in the prefs, save prefs and open a new scene it reverts to cm. Also the grid and near/far clip plane don't keep the new values. Is Maya being dumb or am I? Is this a known problem that I haven't known about? Thanks for the help.

Replies

  • Zergxes
    Options
    Offline / Send Message
    Zergxes polycounter lvl 18
    Version 6 gave me that hiccup with the clip plane values. I keep a mel script around that a coworker slammed out to properly reset the cameras. I keep the darn thing pinned to my shelf.

    setAttr "perspShape.nearClipPlane" 0.001;
    setAttr "perspShape.farClipPlane" 1000;
    select -r top ;
    setAttr "topShape.nearClipPlane" 0.001;
    setAttr "topShape.farClipPlane" 1000;
    select -r front ;
    setAttr "frontShape.nearClipPlane" 0.001;
    setAttr "frontShape.farClipPlane" 1000;
    select -r side ;
    setAttr "sideShape.nearClipPlane" 0.001;
    setAttr "sideShape.farClipPlane" 1000;

    I'm sure someone here has a less heavy-handed solution.

    Luck!
Sign In or Register to comment.