Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_data_modifier.py
| Show First 20 Lines • Show All 680 Lines • ▼ Show 20 Lines | def MULTIRES(self, layout, ob, md): | ||||
| row = layout.row() | row = layout.row() | ||||
| row.enabled = not have_displacement | row.enabled = not have_displacement | ||||
| row.prop(md, "subdivision_type", expand=True) | row.prop(md, "subdivision_type", expand=True) | ||||
| split = layout.split() | split = layout.split() | ||||
| col = split.column() | col = split.column() | ||||
| col.prop(md, "levels", text="Preview") | col.prop(md, "levels", text="Preview") | ||||
| # TODO(sergey): Expose it again after T58473 is solved. | col.prop(md, "sculpt_levels", text="Sculpt") | ||||
| # col.prop(md, "sculpt_levels", text="Sculpt") | |||||
| col.prop(md, "render_levels", text="Render") | col.prop(md, "render_levels", text="Render") | ||||
| row = col.row() | row = col.row() | ||||
| row.enabled = not have_displacement | row.enabled = not have_displacement | ||||
| row.prop(md, "quality") | row.prop(md, "quality") | ||||
| col = split.column() | col = split.column() | ||||
| ▲ Show 20 Lines • Show All 1,610 Lines • Show Last 20 Lines | |||||