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:
Diffstat (limited to 'mesh_tissue/__init__.py')
-rw-r--r--mesh_tissue/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh_tissue/__init__.py b/mesh_tissue/__init__.py
index ee264060..7c1e7fba 100644
--- a/mesh_tissue/__init__.py
+++ b/mesh_tissue/__init__.py
@@ -36,7 +36,6 @@ if "bpy" in locals():
importlib.reload(tessellate_numpy)
importlib.reload(colors_groups_exchanger)
importlib.reload(dual_mesh)
- importlib.reload(lattice)
else:
from . import tessellate_numpy
@@ -52,8 +51,8 @@ from mathutils import Vector
bl_info = {
"name": "Tissue",
"author": "Alessandro Zomparelli (Co-de-iT)",
- "version": (0, 3, 0),
- "blender": (2, 7, 8),
+ "version": (0, 3, 1),
+ "blender": (2, 7, 9),
"location": "",
"description": "Tools for Computational Design",
"warning": "",
@@ -75,5 +74,6 @@ def unregister():
dual_mesh.unregister()
lattice.unregister()
+
if __name__ == "__main__":
register()