Move multiple selected objects by mouse position.
Hi, This script (without the group code) works for a single selected object. I like it to work the same way with multiple objects. The way underneath doesn’t. I’d like some corrections if possible. Thank you
group selection name:"tempgroup"
tool objectPlacer numPoints:1
(
on freeMove do $tempgroup.pos = [gridPoint.x, gridPoint.y, $tempgroup.pos.z]
)
if selection.count == 1 do startTool objectPlacer
ungroup $tempgroup
Comments
.
you can do it without grouping
*
Thank you Jahman, I appreciate it :)