change shrinkwrap modifier cull front/back options from 2 booleans into an enum since it makes no sense to have front and back enabled at once.

This commit is contained in:
2011-02-19 09:53:38 +00:00
parent c09e8b3434
commit 863ac9e07f
2 changed files with 27 additions and 12 deletions

View File

@@ -512,8 +512,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, bpy.types.Panel):
col = split.column()
col.label(text="Cull Faces:")
col.prop(md, "use_cull_front_faces", text="Front")
col.prop(md, "use_cull_back_faces", text="Back")
col.prop(md, "cull_face", expand=True)
layout.label(text="Auxiliary Target:")
layout.prop(md, "auxiliary_target", text="")