From e4d66826fe59fb3f6f0b6d392a9774ffe7ceeeb4 Mon Sep 17 00:00:00 2001 From: Florian Meyer Date: Sun, 6 Jun 2010 13:43:58 +0000 Subject: set arctype to 3 by default. --- add_curve_aceous_galore.py | 10 +++++----- 1 file 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 -- cgit v1.2.3