option to apply scale on export. also add global scale options for exporters. OBJ/X3D/VRML/PLY/STL

This commit is contained in:
Campbell Barton
2013-04-15 17:21:17 +00:00
parent 81507f5408
commit e88ccb06cc
9 changed files with 153 additions and 24 deletions

View File

@ -109,10 +109,12 @@ class Print3DToolBar:
# col.operator("mesh.print3d_clean_thin", text="Wall Thickness")
col = layout.column()
col.label("Export Directory:")
rowsub = col.row(align=True)
rowsub.label("Export Path:")
rowsub.prop(print_3d, "use_apply_scale", text="", icon='MAN_SCALE')
rowsub.prop(print_3d, "use_export_texture", text="", icon='FILE_IMAGE')
rowsub = col.row()
rowsub.prop(print_3d, "export_path", text="")
rowsub.prop(print_3d, "use_export_texture", text="", icon='FILE_IMAGE')
rowsub = col.row(align=True)
rowsub.prop(print_3d, "export_format", text="")