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
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment