Hi all,
I’m trying to copy paste UVs across two objects with similar topologies. One way is to copy and paste the Unwrap UVW modifier:
addModifier sourceObject(Unwrap_UVW())
copiedUnwrap = copy sourceObject.modifiers[1]
paste targetObject copiedUnwrap
The issue here is that the modifier is pasted, but the custom Unwrap layout isn’t. Another option is to run the save command from the modifier:
sourceObject.modifiers[#unwrap_uvw].unwrap.save()
However, this opens a dialog, and there aren’t any options exposed to specify a path.
Appreciate the help. Thanks