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:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2022-01-06 19:33:30 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2022-01-06 19:33:30 +0300
commit6afec05c3286cdea58ab269fb8dd1f5de011de4e (patch)
tree3ca715878219eba2eb531af261a46a439f6e6660 /io_mesh_ply
parentda8c799a7f2e8f618b472892c012d2eaf0a4dbf5 (diff)
PLY: Cleanup properties description
Diffstat (limited to 'io_mesh_ply')
-rw-r--r--io_mesh_ply/__init__.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index 87cbe859..1a64bfd1 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -127,15 +127,12 @@ class ExportPLY(bpy.types.Operator, ExportHelper):
)
use_normals: BoolProperty(
name="Normals",
- description=(
- "Export Normals for smooth and hard shaded faces "
- "(hard shaded faces will be exported as individual faces)"
- ),
+ description="Export vertex normals",
default=True,
)
use_uv_coords: BoolProperty(
name="UVs",
- description="Export the active UV layer",
+ description="Export the active UV layer (will split edges by seams)",
default=True,
)
use_colors: BoolProperty(