hello
is it possible to duplicate and move an object to an absolute position?
explanation: i’m trying to create a script to build… buildings, based on premade sets of windows, doors, etc. but if I use bpy.ops.object.duplicate_move_linked(OBJECT_OT_duplicate={"linked":True, "mode":'TRANSLATION'}, TRANSFORM_OT_translate={"value":(3, 0, 0)})
, the new object will be moved 3 points in X axis relative to the original object; so, if the original is in position (10, 0, 0), the duplicate will be in (13, 0, 0). is there any way to set the absolute position of the duplicated object (apart from just subtracting the original object’s position, since with too many prefabs that could get overly complicated)?
thanks!