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:
authorEugenio Pignataro <info@oscurart.com.ar>2019-02-25 18:48:03 +0300
committerEugenio Pignataro <info@oscurart.com.ar>2019-02-25 18:48:03 +0300
commit85bda1d3f7d20766561ef73c864a4a6872d93a23 (patch)
treeb650ecac89df96d01b3371806b931858eaa202cc /oscurart_tools/__init__.py
parent80ad5c85bd7b8818ec21f7019241a8f8409aa30d (diff)
Add Remove Modifiers
Diffstat (limited to 'oscurart_tools/__init__.py')
-rw-r--r--oscurart_tools/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/oscurart_tools/__init__.py b/oscurart_tools/__init__.py
index b5bcaae9..4986ef82 100644
--- a/oscurart_tools/__init__.py
+++ b/oscurart_tools/__init__.py
@@ -41,6 +41,7 @@ from oscurart_tools.mesh import overlap_uvs
from oscurart_tools.mesh import overlap_island
from oscurart_tools.mesh import select_doubles
from oscurart_tools.mesh import shapes_to_objects
+from oscurart_tools.mesh import remove_modifiers
from oscurart_tools.object import distribute
from oscurart_tools.object import selection
from oscurart_tools.object import search_and_select
@@ -48,6 +49,7 @@ from oscurart_tools.mesh import apply_linked_meshes
from oscurart_tools.render import render_tokens
from oscurart_tools.render import batch_maker
+
from bpy.types import (
AddonPreferences,
Panel,
@@ -110,6 +112,7 @@ class VIEW3D_MT_object_oscurarttools(Menu):
layout = self.layout
layout.operator("object.distribute_osc")
+ layout.operator("mesh.remove_modifiers")
layout.operator("object.search_and_select_osc")
layout.operator("object.shape_key_to_objects_osc")
layout.operator("mesh.apply_linked_meshes")
@@ -142,7 +145,8 @@ classes = (
shapes_to_objects.ShapeToObjects,
search_and_select.SearchAndSelectOt,
apply_linked_meshes.ApplyLRT,
- batch_maker.oscBatchMaker
+ batch_maker.oscBatchMaker,
+ remove_modifiers.RemoveModifiers
)
def register():