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
Readable Tutorials
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
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; } |