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-08-19 09:08:53 +0400
committerAndrew Hale <TrumanBlending@gmail.com>2011-08-19 09:08:53 +0400
commit2bc0a0df5bb18c4b41a22fbde5ffb9d92c9f0109 (patch)
tree2127b3f03000895fa4587b55b5cc5ed09cd462ee /add_curve_ivygen.py
parentd8cdec0ff7960de62be450001111d05fbc5403c0 (diff)
Version 0.1.1:
- Fixed an issue where 'Add New Ivy' and 'Add New Default Ivy' did nothing - Updated Blender version to 2.59 - Updated Blender revision to 39307
Diffstat (limited to 'add_curve_ivygen.py')
-rw-r--r--add_curve_ivygen.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/add_curve_ivygen.py b/add_curve_ivygen.py
index 408fce3a..5d09d110 100644
--- a/add_curve_ivygen.py
+++ b/add_curve_ivygen.py
@@ -21,9 +21,9 @@
bl_info = {
"name": "IvyGen",
"author": "testscreenings, PKHG, TrumanBlending",
- "version": (0, 1, 0),
- "blender": (2, 5, 8),
- "api": 38479,
+ "version": (0, 1, 1),
+ "blender": (2, 5, 9),
+ "api": 39307,
"location": "View3D > Add > Curve",
"description": "Adds generated ivy to a mesh object starting at the 3D"\
" cursor.",
@@ -628,9 +628,11 @@ class IvyGen(bpy.types.Operator):
properties.leafProbability = self.leafProbability
properties.ivyBranchSize = self.ivyBranchSize
properties.ivyLeafSize = self.ivyLeafSize
+ properties.updateIvy = True
row = layout.row()
- row.operator('curve.ivy_gen', text="Add New Default Ivy")
+ prop_def = row.operator('curve.ivy_gen', text="Add New Default Ivy")
+ prop_def.updateIvy = True
row = layout.row()
row.prop(self, 'growLeaves')
@@ -693,4 +695,4 @@ def unregister():
if __name__ == "__main__":
- register()
+ register() \ No newline at end of file