[#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:
@@ -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,
|
||||
|
Reference in New Issue
Block a user