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>2015-02-28 13:03:34 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-02-28 13:03:34 +0300
commit4110b333b15014c19e5e343e3bd4e5370df3b48e (patch)
tree85a8050ad3822fd793ca73483edb028a10923c3e /add_curve_sapling/__init__.py
parent2e3875ef54f16a68840da79c70cc2225a1774f1d (diff)
Fix T43837: Can't change amount of leaves.
Leaves settings were simply never used (broken logic, dead branch code)...
Diffstat (limited to 'add_curve_sapling/__init__.py')
-rw-r--r--add_curve_sapling/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/add_curve_sapling/__init__.py b/add_curve_sapling/__init__.py
index 7e09fb28..f36ab551 100644
--- a/add_curve_sapling/__init__.py
+++ b/add_curve_sapling/__init__.py
@@ -20,7 +20,7 @@ bl_info = {
"name": "Sapling",
"author": "Andrew Hale (TrumanBlending)",
"version": (0, 2, 6),
- "blender": (2, 71, 0),
+ "blender": (2, 73, 0),
"location": "View3D > Add > Curve",
"description": ("Adds a parametric tree. The method is presented by "
"Jason Weber & Joseph Penn in their paper 'Creation and Rendering of "
@@ -189,7 +189,7 @@ class AddTree(bpy.types.Operator):
max=1,
default=0, update=update_tree)
levels = IntProperty(name='Levels',
- description='Number of recursive branches (Levels)',
+ description='Number of recursive branches (Levels, note that last level is also used for generating leaves)',
min=1,
max=6,
default=3, update=update_tree)