Skip to content
Snippets Groups Projects
Commit 336ecf7f authored by Campbell Barton's avatar Campbell Barton
Browse files

invert scale

parent b80e15cb
Branches
Tags
No related merge requests found
......@@ -58,7 +58,7 @@ def write_mesh(context, info, report_cb):
obj = obj_base.object
export_format = print_3d.export_format
global_scale = unit.scale_length if (unit.system != 'NONE' and print_3d.use_apply_scale) else 1.0
global_scale = (1.0 / unit.scale_length) if (unit.system != 'NONE' and print_3d.use_apply_scale) else 1.0
path_mode = 'COPY' if print_3d.use_export_texture else 'AUTO'
context_override = context.copy()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment