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:
authorlijenstina <lijenstina@gmail.com>2017-06-17 03:09:38 +0300
committerlijenstina <lijenstina@gmail.com>2017-06-17 03:09:38 +0300
commit200a9bbbd480251d774424700a424f105022535a (patch)
tree3591ec2b640cd83262a36f0cf5c67623de0cb6f8 /add_advanced_objects_menu
parent8b2a241baca09c9ae5dc1580614c047aabb55d31 (diff)
Add Advanced Objects: Fix missing import, small cleanup
Oscurart Chain Maker was missing from the menu init Small cleanup Remove unused imports Drop To Ground: fix a few issues with the object types crashes Better tooltips, logging and help description Clear the reported variable on reruns
Diffstat (limited to 'add_advanced_objects_menu')
-rw-r--r--add_advanced_objects_menu/__init__.py12
-rw-r--r--add_advanced_objects_menu/arrange_on_curve.py4
2 files changed, 8 insertions, 8 deletions
diff --git a/add_advanced_objects_menu/__init__.py b/add_advanced_objects_menu/__init__.py
index b1d86454..cacf8419 100644
--- a/add_advanced_objects_menu/__init__.py
+++ b/add_advanced_objects_menu/__init__.py
@@ -24,8 +24,8 @@
bl_info = {
"name": "Add Advanced Objects",
- "author": "Meta Androcto,",
- "version": (0, 1, 3),
+ "author": "Meta Androcto",
+ "version": (0, 1, 4),
"blender": (2, 78, 0),
"location": "View3D > Add ",
"description": "Add Object & Camera extras",
@@ -44,6 +44,7 @@ if "bpy" in locals():
importlib.reload(trilighting)
importlib.reload(pixelate_3d)
importlib.reload(object_add_chain)
+ importlib.reload(oscurart_chain_maker)
importlib.reload(circle_array)
importlib.reload(copy2)
importlib.reload(make_struts)
@@ -63,6 +64,7 @@ else:
from . import trilighting
from . import pixelate_3d
from . import object_add_chain
+ from . import oscurart_chain_maker
from . import circle_array
from . import copy2
from . import make_struts
@@ -82,10 +84,8 @@ from bpy.types import (
)
from bpy.props import (
BoolProperty,
- BoolVectorProperty,
EnumProperty,
FloatProperty,
- FloatVectorProperty,
IntProperty,
StringProperty,
PointerProperty,
@@ -241,7 +241,6 @@ class AdvancedObjPreferences(AddonPreferences):
box.label(text="Physics Tools:", icon="LAYER_ACTIVE")
box.label(text="Drop to Ground, Wrecking Ball and Cloth Rope", icon="LAYER_USED")
-
icon_2 = "TRIA_RIGHT" if not self.show_panel_list else "TRIA_DOWN"
box = layout.box()
box.prop(self, "show_panel_list", emboss=False, icon=icon_2)
@@ -250,7 +249,8 @@ class AdvancedObjPreferences(AddonPreferences):
box.label(text="Panels located in 3D View Tools Region > Create",
icon="LAYER_ACTIVE")
box.label(text="CubeSter", icon="LAYER_USED")
-
+ box.label(text="Duplicate on Curve (Shown if an Active Curve Object is it the 3D View)",
+ icon="LAYER_USED")
# Cubester update functions
diff --git a/add_advanced_objects_menu/arrange_on_curve.py b/add_advanced_objects_menu/arrange_on_curve.py
index 14017480..b811263b 100644
--- a/add_advanced_objects_menu/arrange_on_curve.py
+++ b/add_advanced_objects_menu/arrange_on_curve.py
@@ -5,7 +5,7 @@ bl_info = {
"author": "Mano-Wii",
"version": (6, 3, 0),
"blender": (2, 7, 7),
- "location": "View3D > TOOLS",
+ "location": "3D View > Toolshelf > Create > Arrange on Curve",
"description": "Arrange objects along a curve",
"warning": "Select curve",
"wiki_url": "",
@@ -35,7 +35,7 @@ class PanelDupliCurve(Panel):
bl_region_type = "TOOLS"
bl_context = "objectmode"
bl_category = "Create"
- bl_label = "Duplicate on curve"
+ bl_label = "Arrange on Curve"
bl_options = {'DEFAULT_CLOSED'}
@classmethod