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:
authorAndrew Hale <TrumanBlending@gmail.com>2011-07-19 18:20:04 +0400
committerAndrew Hale <TrumanBlending@gmail.com>2011-07-19 18:20:04 +0400
commit29a11b100bb4314702c64727020a93e9ae3a2f14 (patch)
tree72866adcb025105cac56a5a68a3eaacd8d966280 /add_curve_sapling/__init__.py
parent173e9d324622322beb994afdde902fe18ac83038 (diff)
Added the ability to use rectangular leaves with UV mapping
Diffstat (limited to 'add_curve_sapling/__init__.py')
-rw-r--r--add_curve_sapling/__init__.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/add_curve_sapling/__init__.py b/add_curve_sapling/__init__.py
index 82d28a3d..b8403988 100644
--- a/add_curve_sapling/__init__.py
+++ b/add_curve_sapling/__init__.py
@@ -19,9 +19,9 @@
bl_info = {
"name": "Sapling",
"author": "Andrew Hale (TrumanBlending)",
- "version": (0, 2, 3),
+ "version": (0, 2, 4),
"blender": (2, 5, 8),
- "api": 38289,
+ "api": 38479,
"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 "
@@ -29,8 +29,8 @@ bl_info = {
"warning": "", # used for warning icon and text in addons panel
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\
"Scripts/Curve/Sapling_Tree",
- "tracker_url": "http://projects.blender.org/tracker/index.php?"\
- "func=detail&aid=27226&group_id=153&atid=468",
+ "tracker_url": "http://projects.blender.org/tracker/"\
+ "?func=detail&atid=469&aid=27226&group_id=153",
"category": "Add Curve"}
if "bpy" in locals():
@@ -327,6 +327,10 @@ class AddTree(bpy.types.Operator):
'(LeafScaleX)'),
min=0.0,
default=1.0)
+ leafShape = leafDist = EnumProperty(name='Leaf Shape',
+ description='The shape of the leaves, rectangular are UV mapped',
+ items=(('hex', 'Hexagonal', '0'), ('rect', 'Rectangular', '1')),
+ default='hex')
bend = FloatProperty(name='Leaf Bend',
description='The proportion of bending applied to the leaf (Bend)',
min=0.0,
@@ -523,6 +527,8 @@ class AddTree(bpy.types.Operator):
row = box.row()
row.prop(self, 'showLeaves')
row = box.row()
+ row.prop(self, 'leafShape')
+ row = box.row()
row.prop(self, 'leaves')
row = box.row()
row.prop(self, 'leafDist')
@@ -586,4 +592,4 @@ def unregister():
bpy.types.INFO_MT_curve_add.remove(menu_func)
if __name__ == "__main__":
- register()
+ register() \ No newline at end of file