/* Cameras.mel Author : Walter Behrnes waldo_27@hotmail.com Version : 1.0 Description : this mel adds a bottom, back, side_right, and persp_modeling camera to your scene 1 copy to scripts directory 2 type in SetCameras in maya */ global proc SetCameras() { //Create back camera camera -n back_orth -orthographic 1 -rotation 0 180 0 -position 0 0 -100 -wci 0 0 0 -ow 30; rename back_orth1 back_orth; setAttr "back_orth.visibility" 0; //Create rightside camera camera -n side_right_orth -orthographic 1 -rotation 0 -90 0 -position -100 0 0 -wci 0 0 0 -ow 30; rename side_right_orth1 side_right_orth; setAttr "side_right_orth.visibility" 0; //Create bottom camera camera -n bottom_orth -orthographic 1 -rotation -90 0 0 -position 0 -100 0 -wci 0 0 0 -ow 30; rename bottom_orth1 bottom_orth; setAttr "bottom_orth.visibility" 0; //Create modeling camera with focal length of 90 camera -n persp_Modeling -rotation 0 0 0 -position 100 100 100 -wci 0 0 0 -fl 90; rename persp_Modeling1 persp_Modeling; setAttr "persp_Modeling.visibility" 0; }