Visualizzazione post con etichetta shortcuts. Mostra tutti i post
Visualizzazione post con etichetta shortcuts. Mostra tutti i post

venerdì 1 aprile 2011

MEM's Max2Maya - Maya viewport navigation in 3Ds Max

It's very uncomfortable to switch between Maya and Max because of the different viewport navigation styles. Depending on the project I'm working on, I like to choose between Maya and Max or rather use both of them. Unfortunately, if I work with one of two softwares intensely, it's quite difficult to go back to the other one, because I'm prone to use the last navigation style. As said here, I prefer Maya navigation style because it's fast, logic and easy to remember.
MEM's Max2Maya solved my problem smartly.
MEM's Max2Maya "is basically an alternate viewport navigation inside 3ds Max that tries to mimic maya's Alt + Click viewport navigation to some extent". Essentially MEM's Max2Maya is an excellent, free alternative of Switcher for 3ds Max, a commercial solution by digitalRaster.
I thought to use autohotkey to achieve the same result using a script like this one, but MEM's Max2Maya works fine with 3ds Max 2011 Subscription Advantage Pack, so why wasting time? 
MEM's Max2Maya will install a global hook to supervise mouse and keyboard inputs and send them back to Max.

Best regards.

lunedì 19 luglio 2010

Maya style navigation in Lightwave

This is just a quick reminder for me but it may be useful for other explorers. If you want to switch between different 3D applications, the hotkeys and the GUI will be the biggest obstacles you'll find. We are supposed to know 3D basic concepts, so we could use different applications for different purposes. For example, Max is very powerful to work on architectural visualization, Lightwave has a terrific, fast rendering engine,a bunch of interesting plugins and so on.
In my humble opinion, Maya style navigation is the best because it's fast, logic, easy to remember. Lightwave shortcut navigation is horrible (ie, the shortcut for the track tool changes if you are using perspective or orthographic views), Max one is uncomfortable.
Anyway, Maya style navigation in Lightwave is possible and the solution comes from the Newtek discussion forums:


"Download this little app http://www.autohotkey.com, then make a txt file with this script (written by evenflcw) in it:"

#SingleInstance force
SetTitleMatchMode, 2

/*
Lightwave Viewport Navigation - AltPlusMinus!

Alt+LMB - Rotate View (Standard LW combo)
Alt+MMB - Zoom View
Alt+RMB - Pan View
WheelUp - Zoom In
WheelDown - Zoom Out
*/

#IfWinActive LightWave ahk_class WMgrBasic

!RButton:: ;When user presses Alt+MMB,
Send ^!{LButton Down} ;Send 'Ctrl+Alt+LMB pressed'
KeyWait RButton ;Wait until MMB is released
Send ^!{LButton Up} ;Then send 'Ctrl+Alt+LMB released'
return

!MButton::
Send +!{LButton Down}
KeyWait MButton
Send +!{LButton Up}
return

*WheelUp::
Send {.}
return

*WheelDown::
Send {,}
return

#IfWinActive


"and save it with an .ahk extension. Just leave it on your desktop or somewhere handy and double click it when needed." 
If you are on Windows 7, you'll probably need to compile the script (right click on it and Compile) and run it as administrator.
As soon as possible, I'd like to create a script to assign the Maya shortcut navigation to 3Ds max.

Best regards.