- added back Shift+Tab to toggle snap

- added curve tilt and shrink/fatten buttons into the toolbar
- fix typo in last commit for view3d snap header button
This commit is contained in:
Campbell Barton
2009-11-21 13:01:28 +00:00
parent 3d4fff3bc2
commit 455866ecf9
4 changed files with 21 additions and 6 deletions

View File

@@ -171,6 +171,10 @@ class VIEW3D_PT_tools_curveedit(View3DPanel):
col.itemO("tfm.translate")
col.itemO("tfm.rotate")
col.itemO("tfm.resize", text="Scale")
col = layout.column(align=True)
col.item_enumO("tfm.transform", "mode", 'TILT')
col.item_enumO("tfm.transform", "mode", 'CURVE_SHRINKFATTEN')
col = layout.column(align=True)
col.itemL(text="Curve:")
@@ -182,10 +186,12 @@ class VIEW3D_PT_tools_curveedit(View3DPanel):
col = layout.column(align=True)
col.itemL(text="Handles:")
col.item_enumO("curve.handle_type_set", "type", 'AUTOMATIC')
col.item_enumO("curve.handle_type_set", "type", 'VECTOR')
col.item_enumO("curve.handle_type_set", "type", 'ALIGN')
col.item_enumO("curve.handle_type_set", "type", 'FREE_ALIGN')
row = col.row()
row.item_enumO("curve.handle_type_set", "type", 'AUTOMATIC', text="Auto")
row.item_enumO("curve.handle_type_set", "type", 'VECTOR')
row = col.row()
row.item_enumO("curve.handle_type_set", "type", 'ALIGN')
row.item_enumO("curve.handle_type_set", "type", 'FREE_ALIGN', text="Free")
col = layout.column(align=True)
col.itemL(text="Modeling:")