Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_render.py
| Show First 20 Lines • Show All 489 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.use_property_split = True | layout.use_property_split = True | ||||
| scene = context.scene | scene = context.scene | ||||
| rd = scene.render | rd = scene.render | ||||
| col = layout.column() | col = layout.column() | ||||
| col.prop(rd, "filter_size") | col.prop(rd, "filter_size") | ||||
| col.prop(rd, "alpha_mode", text="Alpha") | col.prop(rd, "film_transparent", text="Transparency") | ||||
| class RENDER_PT_eevee_film_overscan(RenderButtonsPanel, Panel): | class RENDER_PT_eevee_film_overscan(RenderButtonsPanel, Panel): | ||||
| bl_label = "Overscan" | bl_label = "Overscan" | ||||
| bl_parent_id = "RENDER_PT_eevee_film" | bl_parent_id = "RENDER_PT_eevee_film" | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| COMPAT_ENGINES = {'BLENDER_EEVEE'} | COMPAT_ENGINES = {'BLENDER_EEVEE'} | ||||
| ▲ Show 20 Lines • Show All 234 Lines • Show Last 20 Lines | |||||