[#21039] OBJ import Clamp Scale limited to .01 as lowest Value. Used to be Zero

[#21053] 2.5alpha0 export obj problem
+ some minor changes.
This commit is contained in:
Campbell Barton
2010-02-09 19:22:57 +00:00
parent f577c4bb7f
commit 52b1c37645
4 changed files with 15 additions and 7 deletions

View File

@@ -928,7 +928,11 @@ class ExportOBJ(bpy.types.Operator):
def execute(self, context):
do_export(self.properties.path, context,
path = self.properties.path
if not path.lower().endswith(".obj"):
path += ".obj"
do_export(path, context,
EXPORT_TRI=self.properties.use_triangles,
EXPORT_EDGES=self.properties.use_edges,
EXPORT_NORMALS=self.properties.use_normals,