Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-02-07 17:07:09 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-02-07 17:08:45 +0300
commit9c7fb7e2ca052ca18fe24b69c040832882c00535 (patch)
tree1046c1f5c584532dd395ec7d1b432e9dff478b99 /io_scene_obj/__init__.py
parent829154dd125ef84c59ebfad92031368853e18b7f (diff)
Fix T61254: Import OBJ error:
We cannot clear a face's vnors/uvs indices in case none are defined in the OBJ file, we need indices for all loops when defining them in Blender's mesh...
Diffstat (limited to 'io_scene_obj/__init__.py')
-rw-r--r--io_scene_obj/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 1ae4a8bf..e52035e8 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "Wavefront OBJ format",
"author": "Campbell Barton, Bastien Montagne",
- "version": (3, 5, 8),
+ "version": (3, 5, 9),
"blender": (2, 80, 0),
"location": "File > Import-Export",
"description": "Import-Export OBJ, Import OBJ mesh, UV's, materials and textures",