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>2013-09-26 10:55:55 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-09-26 10:55:55 +0400
commit42a7a6f8983986710c17b00c043d5b8212d05d13 (patch)
tree408785333febafff6adcfdd13581c1df10dff455 /object_add_chain.py
parent5974f00e9998d4ac274c897dcd11a1d10510e0a7 (diff)
Fix bug reported on ML (usual API changes ;) ).
Diffstat (limited to 'object_add_chain.py')
-rw-r--r--object_add_chain.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/object_add_chain.py b/object_add_chain.py
index 9c067956..fc5f3bd2 100644
--- a/object_add_chain.py
+++ b/object_add_chain.py
@@ -19,8 +19,8 @@
bl_info = {
"name": "Add Chain",
"author": "Brian Hinton (Nichod)",
- "version": (0,1),
- "blender": (2, 59, 0),
+ "version": (0, 1, 1),
+ "blender": (2, 68, 0),
"location": "View3D > Add > Mesh",
"description": "Adds Chain with curve guide for easy creation",
"warning": "",
@@ -32,9 +32,8 @@ bl_info = {
import bpy
-def Add_Chain():
-
+def Add_Chain():
##Adds Empty to scene
bpy.ops.object.add(type='EMPTY',
view_align=False,
@@ -66,7 +65,6 @@ def Add_Chain():
minor_radius=0.25,
major_segments=12,
minor_segments=4,
- use_abso=False,
abso_major_rad=1,
abso_minor_rad=0.5,
)