I was wondering if anyone knows of a script or a script that already exists in a package to center any object to the 0, 0, 0 world coordinates. I find myself modeling and always having to do it manually. Would be nice to have a shortcut.
Announcement
Collapse
No announcement yet.
Max Center Object to 0 World Coordinates
Collapse
X
-
Max Center Object to 0 World Coordinates
Tags: None
-
doesn't right mouse clicking the XYZ in the move dialog work for you? Or did you want to combine that in a one click menu item?Bobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090
- ​Windows 11 Pro
-
One-click keyboard shortcut haha. I'm an old man. Arthritis is setting in.
Comment
-
you and be bothBobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090
- ​Windows 11 Pro
Comment
-
On it's alignment too?
for only position use:
Code:for i in selection do i.pos = [0,0,0]
Code:for i in selection do ( i.pos = [0,0,0] i.rotation = (quat 0 0 0 0) )
Code:for i in selection do ( i.center= [0,0,0] i.rotation = (quat 0 0 0 0) )
Comment
-
Thanks Jo, that is extremely helpful.
Comment
-
The shortest way, I think:
all objects:
Code:objects.pos=[0,0,0]
Code:selection.pos=[0,0,0]
Marc Lorenz
___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___
www.marclorenz.com
www.facebook.com/marclorenzvisualization
Comment
Comment