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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-01-22 13:14:13 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-01-22 13:14:13 +0300
commitcf60d1ad47622f85d8294609198de482fb8c4f22 (patch)
tree8f2e2c7f3c795aa90aa9db06e746863f287ad6dc
parent5804465558100a079aa19680928824d2dbcdd63f (diff)
Comment out some features in Ivy gen, for 2.79a only.
Fix is too complex to be included in a bugfix release, so alternative solution is to disable broken stuff. :|
-rw-r--r--add_curve_ivygen.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/add_curve_ivygen.py b/add_curve_ivygen.py
index dd523102..9e9b38bb 100644
--- a/add_curve_ivygen.py
+++ b/add_curve_ivygen.py
@@ -676,6 +676,8 @@ class IvyGen(bpy.types.Operator):
layout.prop(self, 'updateIvy', icon='CURVE_DATA')
+ # Not working, commented out for 2.79a...
+ """
properties = layout.operator('curve.ivy_gen', text="Add New Ivy")
properties.randomSeed = self.randomSeed
properties.maxTime = self.maxTime
@@ -695,6 +697,7 @@ class IvyGen(bpy.types.Operator):
prop_def = layout.operator('curve.ivy_gen', text="Add New Default Ivy")
prop_def.updateIvy = True
+ """
layout.prop(self, 'growLeaves')