Change Camera Marking Menu
This is a small tips for clear all namespaces in the maya scene. First copy the script bellow and save it as “bc_CleanAllNameSpace.mel” in any of your user script folder. Or you can download the script from here
About autodesk maya
Change Camera Marking Menu
This is a small tips for clear all namespaces in the maya scene. First copy the script bellow and save it as “bc_CleanAllNameSpace.mel” in any of your user script folder. Or you can download the script from here
Download the latest version of the bcb_sript_pack from http://barishcb.com/. If you have any suggesions or bugs please email me from my website. The RAR file contains mel scripts, documentaion, icon bitmaps, plugins and an installation maya file.
Extract the rar file into your local drive. Then open BC_Script_Install.ma file using any version of maya. When the maya open you will get and Script installation window. Follow the instructions inside it.
SyntaxHighlighter Evolved allows you to easily post syntax-highlighted code to your site without losing it’s formatting or making any manual changes. It uses the SyntaxHighlighter JavaScript package by Alex Gorbatchev.
I included MEL(Maya embedded language) inside this package. It is simple to put mel codes in your post with syntax highlighing.
[mel]
global proc string bcFileName()
{
$bcFileName = file -q -sn -shn
;
if($bcFileName == “”)
return “Untitled Scene”;
return $bcFileName;
[/mel]
Continue reading Syntax Highlighter 3.1.3 for WordPress Laguage includes MEL
Change Camera Marking Menu
This is a small tips for making marking menu for changing cameras easily. First copy the script bellow and save it as “bc_ChangeCam.mel” in any of your user script folder. Or you can download the script from here
Continue reading Change Camera Marking Menu (Mel Function)
This is a simple function to reverse string array in mel.
1 2 3 4 5 6 7 8 9 |
global proc string[] bc_ReverseList(string $bcInputList[]) { string $bcOutputList[]; for($bcItem in $bcInputList) { stringArrayInsertAtIndex(0, $bcOutputList, strip($bcItem)); } return $bcOutputList; } |
This will list all the cameras with basic attrs. Allows you to change the view form one camera to to another.
This is a simple script to apply xray mode to selected object only
Notes : Select an object opt click on modeling -> Object xRay Toggle.
Download Script : Click Here
This script helps you to change the wire color of multiple objects.
Notes :Select an object(or Objects) and then modeling -> Change Wireframe Color(s). List all the objects and the colors.
Download Script : Click Here
This script used to scatter random objects in selected location. like replace locators, dummy objects, vertices, etc….
Before giving discribtion for this script first I have to thank Mr.Alf Kraus who created this amazing plugin for caching animated objects in maya called GeoBake. This is a MEL script that developed to ease the usage of GeoBake plugin. This script will help you to import cache file inside and assign to the correct objects.