Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_data_modifier.py
| Show First 20 Lines • Show All 1,039 Lines • ▼ Show 20 Lines | def SOLIDIFY(self, layout, ob, md): | ||||
| sub.active = bool(md.vertex_group) | sub.active = bool(md.vertex_group) | ||||
| sub.prop(md, "thickness_vertex_group", text="Factor") | sub.prop(md, "thickness_vertex_group", text="Factor") | ||||
| if solidify_mode == 'EXTRUDE': | if solidify_mode == 'EXTRUDE': | ||||
| col.label(text="Crease:") | col.label(text="Crease:") | ||||
| col.prop(md, "edge_crease_inner", text="Inner") | col.prop(md, "edge_crease_inner", text="Inner") | ||||
| col.prop(md, "edge_crease_outer", text="Outer") | col.prop(md, "edge_crease_outer", text="Outer") | ||||
| col.prop(md, "edge_crease_rim", text="Rim") | col.prop(md, "edge_crease_rim", text="Rim") | ||||
| else: | |||||
| col.prop(md, "nonmanifold_merge_threshold") | |||||
| col = split.column() | col = split.column() | ||||
| col.prop(md, "offset") | col.prop(md, "offset") | ||||
| col.prop(md, "use_flip_normals") | col.prop(md, "use_flip_normals") | ||||
| if solidify_mode == 'EXTRUDE': | if solidify_mode == 'EXTRUDE': | ||||
| ▲ Show 20 Lines • Show All 1,203 Lines • Show Last 20 Lines | |||||