[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [2252] trunk/py/scripts/addons/ add_curve_ivygen.py: Version 0.1.1:

Andrew Hale TrumanBlending at gmail.com
Fri Aug 19 07:08:54 CEST 2011


Revision: 2252
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=2252
Author:   trumanblending
Date:     2011-08-19 05:08:53 +0000 (Fri, 19 Aug 2011)
Log Message:
-----------
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

Modified Paths:
--------------
    trunk/py/scripts/addons/add_curve_ivygen.py

Modified: trunk/py/scripts/addons/add_curve_ivygen.py
===================================================================
--- trunk/py/scripts/addons/add_curve_ivygen.py	2011-08-18 20:56:28 UTC (rev 2251)
+++ trunk/py/scripts/addons/add_curve_ivygen.py	2011-08-19 05:08:53 UTC (rev 2252)
@@ -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 @@
         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 @@
 
 
 if __name__ == "__main__":
-    register()
+    register()
\ No newline at end of file



More information about the Bf-extensions-cvs mailing list