//Hide UV Lines when doing UV work.
string $maDisplayMode = `displayPref -q -wsa`; if ($maDisplayMode == "full") { displayPref -wsa "none"; print "Edge display style changed to NONE"; } else if ($maDisplayMode == "none") { displayPref -wsa "full"; print "Edge display style changed to FULL"; } else { displayPref -wsa "full"; print "Edge display style defaulted to FULL"; }
//End
string $maDisplayMode = `displayPref -q -wsa`; if ($maDisplayMode == "full") { displayPref -wsa "none"; print "Edge display style changed to NONE"; } else if ($maDisplayMode == "none") { displayPref -wsa "full"; print "Edge display style changed to FULL"; } else { displayPref -wsa "full"; print "Edge display style defaulted to FULL"; }
//End
Comments
Post a Comment