diff --git a/__init__.py b/__init__.py index bb84d0d..5f6d3a2 100644 --- a/__init__.py +++ b/__init__.py @@ -465,8 +465,6 @@ class TexToolsSettings(bpy.types.PropertyGroup): min = 1, max = 16 ) - - bake_ray_distance : bpy.props.FloatProperty( name = "Ray Dist.", description = "Ray distance when baking. When using cage used as extrude distance", @@ -479,6 +477,16 @@ class TexToolsSettings(bpy.types.PropertyGroup): description="Force a single texture bake accross all selected objects", default = False ) + bake_exclude_others: bpy.props.BoolProperty( + name="Exclude Others", + description="Exclude deselected objects when rendering", + default = False + ) + bake_merge_object: bpy.props.BoolProperty( + name="Merge Objects", + description="Merge selected objects when rendering, results in significantly lower bake times", + default = False + ) bake_sampling : bpy.props.EnumProperty(items= [('1', 'None', 'No Anti Aliasing (Fast)'), ('2', '2x', 'Render 2x and downsample'),