Skip to content

Instantly share code, notes, and snippets.

@manhha00
Created December 1, 2017 14:59
Show Gist options
  • Save manhha00/a6ad1fea7262022d6af1fb274face10a to your computer and use it in GitHub Desktop.
Save manhha00/a6ad1fea7262022d6af1fb274face10a to your computer and use it in GitHub Desktop.
maya - mel - xray toggle
//Toggle Viewport X-Ray:
$currentPanel = `getPanel -withFocus`;
string $panelType = `getPanel -to $currentPanel`;
if ($panelType == "modelPanel")
{ modelEditor -e -xray ( !`modelEditor -q -xray $currentPanel` ) $currentPanel;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment