Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_view_layer.py
| Show First 20 Lines • Show All 203 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| if context.engine == 'BLENDER_EEVEE': | if context.engine == 'BLENDER_EEVEE': | ||||
| col.prop(view_layer, "use_pass_cryptomatte_accurate", | col.prop(view_layer, "use_pass_cryptomatte_accurate", | ||||
| text="Accurate Mode") | text="Accurate Mode") | ||||
| class VIEWLAYER_PT_layer_passes_cryptomatte(ViewLayerCryptomattePanel, Panel): | class VIEWLAYER_PT_layer_passes_cryptomatte(ViewLayerCryptomattePanel, Panel): | ||||
| bl_parent_id = "VIEWLAYER_PT_layer_passes" | bl_parent_id = "VIEWLAYER_PT_layer_passes" | ||||
| COMPAT_ENGINES = {'BLENDER_EEVEE'} | COMPAT_ENGINES = {'BLENDER_EEVEE', 'BLENDER_EEVEE_NEXT'} | ||||
| class VIEWLAYER_MT_lightgroup_sync(Menu): | class VIEWLAYER_MT_lightgroup_sync(Menu): | ||||
| bl_label = "Lightgroup Sync" | bl_label = "Lightgroup Sync" | ||||
| def draw(self, _context): | def draw(self, _context): | ||||
| layout = self.layout | layout = self.layout | ||||
| ▲ Show 20 Lines • Show All 60 Lines • Show Last 20 Lines | |||||