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:
authorFlorian Meyer <florianfelix@web.de>2010-06-06 17:43:58 +0400
committerFlorian Meyer <florianfelix@web.de>2010-06-06 17:43:58 +0400
commite4d66826fe59fb3f6f0b6d392a9774ffe7ceeeb4 (patch)
tree5e9636afdac3cccba6b55e470f11d470b95ce7f7 /add_curve_aceous_galore.py
parent20debc90828b52c204ffab072f817a62a3e2facc (diff)
set arctype to 3 by default.
Diffstat (limited to 'add_curve_aceous_galore.py')
-rw-r--r--add_curve_aceous_galore.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/add_curve_aceous_galore.py b/add_curve_aceous_galore.py
index 4e2d8532..e46306c9 100644
--- a/add_curve_aceous_galore.py
+++ b/add_curve_aceous_galore.py
@@ -835,9 +835,9 @@ class Curveaceous_galore(bpy.types.Operator):
default=90.0,
description="End angle")
arcType = IntProperty(name="Arc type",
- default=2,
- min=1, soft_min=2,
- max=2, soft_max=2,
+ default=3,
+ min=3, soft_min=3,
+ max=3, soft_max=3,
description="Sides of arc")
#### Cogwheel properties
@@ -964,7 +964,7 @@ class Curveaceous_galore(bpy.types.Operator):
#box.prop(props, 'arcType') # has only one Type?
box.prop(props, 'startAngle')
box.prop(props, 'endAngle')
- #box.prop(props, 'innerRadius') # doesn't seem to do anything
+ box.prop(props, 'innerRadius') # doesn't seem to do anything
box.prop(props, 'outerRadius')
if props.GalloreType == 'Cogwheel':
box.prop(props, 'teeth')
@@ -1148,4 +1148,4 @@ def unregister():
bpy.types.INFO_MT_curve_add.remove(Curveaceous_galore_button)
if __name__ == "__main__":
- register()
+ register() \ No newline at end of file