Skip to content

Instantly share code, notes, and snippets.

@cecilemuller
Created June 10, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cecilemuller/d979d039e8efd64cf285 to your computer and use it in GitHub Desktop.
Save cecilemuller/d979d039e8efd64cf285 to your computer and use it in GitHub Desktop.
Maxscript: move the pivot of the selection to the origin
macroScript movePivotToOrigin
category:"Wildpeaks"
tooltip:"Move pivot to global [0, 0, 0]"
(
if selection.count > 0 then
(
selection.pivot = [0,0,0]
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment