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:
authorSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-05-04 21:59:39 +0300
committerSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-05-04 21:59:39 +0300
commitb5608a3116d3b2d7f89a08e90387aea8c7230fdd (patch)
treeb1edabac6b18cf96c6f39b11d0654eabbda9ad1d /add_curve_extra_objects/__init__.py
parentb23f15603088f2e382ce9a53093b58debc3d70e6 (diff)
Curve extra objects: Enabled work beveltaper_curve.
Adding function beveltaper in contex menu. Enabled Path Animation in other some curve.
Diffstat (limited to 'add_curve_extra_objects/__init__.py')
-rw-r--r--add_curve_extra_objects/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index 321e1663..fbb0838b 100644
--- a/add_curve_extra_objects/__init__.py
+++ b/add_curve_extra_objects/__init__.py
@@ -255,8 +255,6 @@ def menu_func(self, context):
return None
layout.separator()
layout.menu(INFO_MT_curve_knots_add.bl_idname, text="Knots", icon='CURVE_DATA')
- #layout.menu(VIEW3D_MT_bevel_taper_curve_menu, text="Bevel/Taper", icon='CURVE_DATA')
-
def menu_surface(self, context):
self.layout.separator()
@@ -288,6 +286,7 @@ def register():
add_curve_curly.register()
add_curve_spirofit_bouncespline.register()
add_surface_plane_cone.register()
+ beveltaper_curve.register()
# Add "Extras" menu to the "Add Curve" menu
bpy.types.VIEW3D_MT_curve_add.append(menu_func)
@@ -310,6 +309,7 @@ def unregister():
add_curve_aceous_galore.unregister()
add_curve_spirals.unregister()
add_curve_simple.unregister()
+ beveltaper_curve.unregister()
from bpy.utils import unregister_class
for cls in reversed(classes):