Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
patmo141 committed Sep 11, 2013
2 parents 0c8ae50 + 03b8324 commit 146fb92
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions scripts/addons/contour_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"name": "Contour Retopology Tool",
"description": "A tool to retopologize forms quickly with contour strokes.",
"author": "Patrick Moore",
"version": (0, 0, 1),
"version": (1, 0, 0),
"blender": (2, 6, 8),
"location": "View 3D > Tool Shelf",
"warning": 'Beta', # used for warning icon and text in addons panel
"warning": '', # used for warning icon and text in addons panel
"wiki_url": "http://cgcookie.com/blender/docs/contour-retopology/",
"tracker_url": "https://github.com/CGCookie/script-bakery/issues?labels=Contour+Retopology&milestone=1&page=1&state=open",
"category": "3D View"}
Expand Down Expand Up @@ -271,15 +271,15 @@ class ContourToolsAddonPreferences(AddonPreferences):
widget_radius = IntProperty(
name="Widget Radius",
description = "Size of cutline widget radius",
default=50,
default=25,
min = 20,
max = 100,
)

widget_radius_inner = IntProperty(
name="Widget Inner Radius",
description = "Size of cutline widget inner radius",
default=15,
default=10,
min = 5,
max = 30,
)
Expand Down Expand Up @@ -467,7 +467,6 @@ def draw(self, context):
col = layout.column()
col.operator("cgcookie.retop_contour", text="Draw Contours", icon='MESH_UVSPHERE')
#col.operator("cgcookie.retopo_poly_sketch", text="Sketch Poly Strips", icon='MESH_UVSPHERE')
col.operator("cgcookie.clear_cache", text = "Clear Cache", icon = 'CANCEL')

cgc_contour = context.user_preferences.addons['contour_tools'].preferences
row = layout.row()
Expand All @@ -478,6 +477,9 @@ def draw(self, context):
row.prop(cgc_contour, "recover")
row.prop(cgc_contour, "recover_clip")

col = layout.column()
col.operator("cgcookie.clear_cache", text = "Clear Cache")

class CGCOOKIE_OT_retopo_contour_menu(bpy.types.Menu):
bl_label = "Retopology"
bl_space_type = 'VIEW_3D'
Expand Down

0 comments on commit 146fb92

Please sign in to comment.