diff options
Diffstat (limited to 'tools/MayaTools/Maya4.0/scripts/others/bobsMenu.mel')
-rw-r--r-- | tools/MayaTools/Maya4.0/scripts/others/bobsMenu.mel | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/MayaTools/Maya4.0/scripts/others/bobsMenu.mel b/tools/MayaTools/Maya4.0/scripts/others/bobsMenu.mel new file mode 100644 index 0000000..b8c5b4a --- /dev/null +++ b/tools/MayaTools/Maya4.0/scripts/others/bobsMenu.mel @@ -0,0 +1,33 @@ +global proc bobsMenu(){ + + global string $gMainWindow; + + setParent $gMainWindow; + + menu -l "Bobs Menu" + -p MayaWindow + -to 1 + -aob true + -fi "bob_Mr_T.bmp" + bobsMenu; + + menuItem -l "Refresh Layers" + -ann ("") + -echoCommand true + -c "reBuildLayers" + reBuildLayers; + + menuItem -divider true; + + menuItem -l "Persp To Ortho" + -ann ("") + -echoCommand true + -c "swapCamera 0" + swapCamera; + + menuItem -l "Back To Persp" + -ann ("") + -echoCommand true + -c "swapCamera 1" + swapCamera2; +};
\ No newline at end of file |