WireJumble MEL?

WireJumble MEL?

Anonymous
Not applicable
334 Views
2 Replies
Message 1 of 3

WireJumble MEL?

Anonymous
Not applicable
Does anyone know if Neil Blevins WireJumble maxscript is available in MEL? Or is there a similar script? What the heck, if you have any cool random scripts, could you share them here? Thanks.
0 Likes
335 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
Here's a couple to start it off:
This Camera from current view script is very useful, it creates a persp camera from whatever camera you are using.
{
$currentPanel = `getPanel -withFocus`;
$currentCam = `modelPanel -query -camera $currentPanel `;
print $currentCam;
float $camPos[] = `xform -query -translation $currentCam`;
print $camPos;
float $camRot[] = `xform -query -rotation $currentCam`;
print $camRot;
string $newCam[] = camera();
print $newCam;
xform -translation $camPos $camPos $camPos $newCam;
xform -rotation $camRot $camRot $camRot $newCam;
cameraMakeNode( 2, $newCam);
}

Another one I use a lot is the Random duplicator script, you can download it below.
And lastly, Mayaman studio lights pro; I haven't had a chance to use it, but it claims to be very cool, and it looks pretty cool.

13956_lMwF9jzQEmDlAAHqA5MB.zip

0 Likes
Message 3 of 3

Anonymous
Not applicable
Hmm....
No comments?
0 Likes