1
0
mirror of https://github.com/drewcassidy/TexTools-Blender synced 2024-09-01 14:54:44 +00:00

Add new properties

This commit is contained in:
Andrew Cassidy 2019-12-24 15:07:00 -08:00
parent f60b85b477
commit cad078d85d
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1

View File

@ -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'),