Hey, so in UDK you can toggle through the transform gizmos by using spacebar. I was wondering if you could make this a hotkey in max. Cause it gets really annoying when i switch back and forth between them!
here ya go, ultra-quick and dirty. Just bind it to spacebar:
macroScript gizmoToggle
category: "GregsScripts"
(
gizType = toolMode.commandmode as string
if gizType == "select" then
(toolMode.commandmode = #move)
else if gizType == "move" then
(toolMode.commandmode = #rotate)
else if gizType == "Rotate" then
(toolMode.commandmode = #nuscale)
else if gizType == "nuscale" then
(toolMode.commandmode = #select)
Replies
Also moving this to tech talk as that is where it should be.
macroScript gizmoToggle
category: "GregsScripts"
(
gizType = toolMode.commandmode as string
if gizType == "select" then
(toolMode.commandmode = #move)
else if gizType == "move" then
(toolMode.commandmode = #rotate)
else if gizType == "Rotate" then
(toolMode.commandmode = #nuscale)
else if gizType == "nuscale" then
(toolMode.commandmode = #select)
redrawViews
)