Tutorials...
Class 01 Zbrush File
Right Click 'save as'
Maya Hotkeys
Soft Edge polyPerformAction "polySoftEdge -a 180" e 0;
Hard Edge polyPerformAction "polySoftEdge -a 0" e 0;
Wire toggle
//Gets current pannal
$currentPanel = `getPanel -withFocus`;
$state = `modelEditor -q -cameras $currentPanel`;
modelEditor -edit -cameras (!$state) $currentPanel;
//Sets it on or off
$state = `modelEditor -q -wos $currentPanel`;
//set it to the opposite state
modelEditor -edit -wos (!$state) $currentPanel;
Xraymode toggle
//MEL to toggle cameras and image planes on/off
//map to a hotkey
$currentPanel = `getPanel -withFocus`;
$state = `modelEditor -q -cameras $currentPanel`;
modelEditor -edit -cameras (!$state) $currentPanel;
//get the state of xray mode (either on or off)
$state = `modelEditor -q -xray $currentPanel`;
//set it to the opposite state
modelEditor -edit -xray (!$state) $currentPanel;