From 8701aebc91823c253055ead1fb0fa1b4a5ae8800 Mon Sep 17 00:00:00 2001 From: pullusb Date: Fri, 25 Jul 2025 16:15:09 +0200 Subject: [PATCH] change default settings --- operators/conform_collection_hierarchy.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/operators/conform_collection_hierarchy.py b/operators/conform_collection_hierarchy.py index 3baeac5..96bb839 100644 --- a/operators/conform_collection_hierarchy.py +++ b/operators/conform_collection_hierarchy.py @@ -56,7 +56,7 @@ class RT_OT_conform_collection_hierarchy(Operator): active_object_viewlayer_hide : BoolProperty( name="Active Object View Layer Hide", description="show / hide active object in current viewlayer", - default=False, + default=True, update=toggle_viewlayer_hide_state ) @@ -85,7 +85,7 @@ class RT_OT_conform_collection_hierarchy(Operator): conform_selectability: BoolProperty( name="Hide Select State", description="Conform hide select select", - default=True + default=False ) conform_viewlayer: BoolProperty( @@ -97,13 +97,13 @@ class RT_OT_conform_collection_hierarchy(Operator): conform_viewport: BoolProperty( name="Disable in Viewports State", description="Conform the monitor icon (global viewport disable)", - default=True + default=False ) conform_render: BoolProperty( name="Disable in Renders State", description="Conform the camera icon (render visibility)", - default=True + default=False ) ## Specific to collections @@ -111,19 +111,19 @@ class RT_OT_conform_collection_hierarchy(Operator): conform_exclude: BoolProperty( name="Exclude View Layer State", description="Conform the exclude from view layer", - default=False + default=True ) conform_holdout: BoolProperty( name="Holdout State", description="Conform Collection Holdout State", - default=False + default=True ) conform_use_indirect: BoolProperty( name="Indirect Only State", description="Conform Collection Indirect Only", - default=False + default=True ) def invoke(self, context, event):