Hi guys,
I'm learning Maya coming from Max right now.
I've been trying to set hotkeys that are more familiar to me.
I can't seem to find this Wireframe on Shaded command anywhere in the hotkey editor.
Is it in there somewhere or is that something you just have to script?
Also is there an easier way to search for specific commands in the hotkey editor?
I tried the Search button in there but it doesn't seem to really work or maybe it's just expecting exact keywords.
Thanks!
Replies
wireframe "ON" = setWireframeOnShadedOption true modelPanel4;
wireframe "OFF"= setWireframeOnShadedOption false modelPanel4;
or under shading tab:
Windows>Settings / Preferences>Display>View>Wireframe on shaded> Full/Reduced/None.
Here's a toggle script I made if anyone else is looking to add this.
You can just create a new User hotkey in the Hotkey editor and paste that in there.
Welcome mate, my pleasure.
And don't forget to use X-Ray for modeling (paste command on Alt-X like in Max)
X-Ray>
string $panel = `getPanel -wf`;
if ( `modelEditor -ex $panel` )
modelEditor -e -xray ( !`modelEditor -q -xray $panel` ) $panel;
Here's another one
Toggle between wireframe and shaded:
Good one!
Thanks!
Is there a simple way to save/load hotkeys?
I'm going to be sharing Maya with others at this new office.
I want to be able to ninja my abominable ways so I don't get burned at the stake every time someone comes over to use Maya.
Well yes absolutely, just go under C:/Users\***youruserID***\Documents\maya and *.zip everything in this folder. To reload it unpack it at the same exact location and order you picked it at first.
Hotkeys file is located in the pref folder and is named "userHotkeys.mel"