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:
authorCampbell Barton <ideasman42@gmail.com>2011-09-08 09:26:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-08 09:26:39 +0400
commitb25a7c909950ef9d8d0528150fc6f761b73ab6f0 (patch)
tree6c7050f915ba34b6926d607294e9e7c5ce255a43 /add_curve_ivygen.py
parent48d15df82ab093e69c5f9845419822d0749e2d77 (diff)
pedantic pep8 edits
Diffstat (limited to 'add_curve_ivygen.py')
-rw-r--r--add_curve_ivygen.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/add_curve_ivygen.py b/add_curve_ivygen.py
index 10ba88d0..49988fad 100644
--- a/add_curve_ivygen.py
+++ b/add_curve_ivygen.py
@@ -607,7 +607,7 @@ class IvyGen(bpy.types.Operator):
def draw(self, context):
layout = self.layout
-
+
layout.prop(self, 'updateIvy', icon='CURVE_DATA')
properties = layout.operator('curve.ivy_gen', text="Add New Ivy")
@@ -636,21 +636,21 @@ class IvyGen(bpy.types.Operator):
box.label("Generation Settings:")
box.prop(self, 'randomSeed')
box.prop(self, 'maxTime')
-
+
box = layout.box()
box.label("Size Settings:")
box.prop(self, 'maxIvyLength')
box.prop(self, 'ivySize')
box.prop(self, 'maxFloatLength')
box.prop(self, 'maxAdhesionDistance')
-
+
box = layout.box()
box.label("Weight Settings:")
box.prop(self, 'primaryWeight')
box.prop(self, 'randomWeight')
box.prop(self, 'gravityWeight')
box.prop(self, 'adhesionWeight')
-
+
box = layout.box()
box.label("Branch Settings:")
box.prop(self, 'branchingProbability')