ScriptSpot

Forum topic · General Scripting

How do switch between pivot selection per hotkey?

By Ulrich Thümmler · 2025-01-06

Description

Hi,
in 3ds max i have 3 modes to switch the pivot selection.

Pivot Point Center
Use Selection Center
Use Transform Coordinate center

for faster work, i will switch it per hotkey. But in the Hotkey-Editor i don't find a name like and the max script listener has no print from it.

Has anyone tried to grab this per script or found a Hotkey-Editor name?

regards,
Ulrich

Comments (1)

Ulrich Thümmler · 2025-02-17

Is solved

case getCoordCenter() of
(
#system : setCoordCenter #local
#local : setCoordCenter #selection
#selection : setCoordCenter #system
)
updateToolbarButtons()