Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_render.py
| Show First 20 Lines • Show All 628 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| scene = context.scene | scene = context.scene | ||||
| props = scene.layer_properties['BLENDER_EEVEE'] | props = scene.layer_properties['BLENDER_EEVEE'] | ||||
| col = layout.column() | col = layout.column() | ||||
| col.prop(props, "motion_blur_enable") | col.prop(props, "motion_blur_enable") | ||||
| col.prop(props, "dof_enable") | col.prop(props, "dof_enable") | ||||
| col.prop(props, "bloom_enable") | col.prop(props, "bloom_enable") | ||||
| col.prop(props, "fxaa_enable") | |||||
| class RENDER_PT_eevee_postprocess_settings(RenderButtonsPanel, Panel): | class RENDER_PT_eevee_postprocess_settings(RenderButtonsPanel, Panel): | ||||
| bl_label = "Post Process Settings" | bl_label = "Post Process Settings" | ||||
| COMPAT_ENGINES = {'BLENDER_EEVEE'} | COMPAT_ENGINES = {'BLENDER_EEVEE'} | ||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| ▲ Show 20 Lines • Show All 52 Lines • Show Last 20 Lines | |||||