Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'object_print3d_utils/__init__.py')
-rw-r--r--object_print3d_utils/__init__.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 9a2aefbe..87a69155 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -61,10 +61,10 @@ class SceneProperties(PropertyGroup):
name="Format",
description="Format type to export to",
items=(
- ('STL', "STL", ""),
+ ('OBJ', "OBJ", ""),
('PLY', "PLY", ""),
+ ('STL', "STL", ""),
('X3D', "X3D", ""),
- ('OBJ', "OBJ", ""),
),
default='STL',
)
@@ -78,6 +78,13 @@ class SceneProperties(PropertyGroup):
description="Apply scene scale setting on export",
default=False,
)
+ use_data_layers: BoolProperty(
+ name="Data Layers",
+ description=(
+ "Export normals, UVs, vertex colors and materials for formats that support it "
+ "significantly increasing filesize"
+ ),
+ )
export_path: StringProperty(
name="Export Directory",
description="Path to directory where the files are created",