Skip to content
Snippets Groups Projects
Commit 2bc0a0df authored by Andrew Hale's avatar Andrew Hale
Browse files

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
parent d8cdec0f
Branches
No related tags found
No related merge requests found
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
bl_info = { bl_info = {
"name": "IvyGen", "name": "IvyGen",
"author": "testscreenings, PKHG, TrumanBlending", "author": "testscreenings, PKHG, TrumanBlending",
"version": (0, 1, 0), "version": (0, 1, 1),
"blender": (2, 5, 8), "blender": (2, 5, 9),
"api": 38479, "api": 39307,
"location": "View3D > Add > Curve", "location": "View3D > Add > Curve",
"description": "Adds generated ivy to a mesh object starting at the 3D"\ "description": "Adds generated ivy to a mesh object starting at the 3D"\
" cursor.", " cursor.",
...@@ -628,9 +628,11 @@ class IvyGen(bpy.types.Operator): ...@@ -628,9 +628,11 @@ class IvyGen(bpy.types.Operator):
properties.leafProbability = self.leafProbability properties.leafProbability = self.leafProbability
properties.ivyBranchSize = self.ivyBranchSize properties.ivyBranchSize = self.ivyBranchSize
properties.ivyLeafSize = self.ivyLeafSize properties.ivyLeafSize = self.ivyLeafSize
properties.updateIvy = True
row = layout.row() 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 = layout.row()
row.prop(self, 'growLeaves') row.prop(self, 'growLeaves')
...@@ -693,4 +695,4 @@ def unregister(): ...@@ -693,4 +695,4 @@ def unregister():
if __name__ == "__main__": if __name__ == "__main__":
register() register()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment