Toggle navigation
Polycount
News
Forums
Patreon
Challenges
Quarterly Character Art Challenge
Bi-Monthly Environment Art Challenge
Wiki
Moar
Recent
Activity
Badges
Drafts
Store
Sign In
·
Register
Author:
Justo
Home
›
Technical Talk
Is there a way in maya to deactivate wirframe on selected object while selecting poly
Cathodeus
polycounter lvl 15
Offline /
Send Message
Cathodeus
polycounter lvl 15
Apr 2013
Hi,
Is there a way in maya to deactivate wirframe on selected object while selecting poly.
I'm currently modeling a photo and the wire is asking some information, i don't see what i select.
Thanks in advance.
Massimo
0
·
Share on Facebook
Share on Twitter
Replies
Offline /
Send Message
Cibo
polycounter lvl 10
Apr 2013
Display -> Polygons -> Custom Polygon Display... -> edges (x) only hard edges
Smooth your whole object and you have no wireframe. The only way i know. :poly122:
0
·
Share on Facebook
Share on Twitter
Offline /
Send Message
nullfed
polycounter lvl 9
Apr 2013
Assign this to a hotkey and it will toggle the wire on/off:
{ string $mode = `displayPref -q -wsa`;
if ($mode == "full")
displayPref -wsa "none";
else if ($mode == "none")
displayPref -wsa "full";
}
0
·
Share on Facebook
Share on Twitter
Offline /
Send Message
Cathodeus
polycounter lvl 15
Apr 2013
Thanks guys !!!
0
·
Share on Facebook
Share on Twitter
Sign In
or
Register
to comment.
Replies
Smooth your whole object and you have no wireframe. The only way i know. :poly122:
{ string $mode = `displayPref -q -wsa`;
if ($mode == "full")
displayPref -wsa "none";
else if ($mode == "none")
displayPref -wsa "full";
}