I modified the code to switch Z and Y, I'll work on it some more tonight and upload a new version with some other cool features soon.

for o in selection do ( v_min = in coordsys local o.min v_max = in coordsys local o.max s_min = (v_min[1] as string) + "," + (v_min[2] as string)+ "," + (v_min[3] as string) s_max = (v_max[1] as string) + "," + (v_max[2] as string) + "," + (v_max[3] as string) setUserProp o "intMap_bboxmin" s_min setUserProp o "intMap_bboxmax" s_max )
Comment