[Bf-extensions-cvs] [6afec05c] master: PLY: Cleanup properties description

Mikhail Rachinskiy noreply at git.blender.org
Thu Jan 6 17:34:57 CET 2022


Commit: 6afec05c3286cdea58ab269fb8dd1f5de011de4e
Author: Mikhail Rachinskiy
Date:   Thu Jan 6 20:33:30 2022 +0400
Branches: master
https://developer.blender.org/rBA6afec05c3286cdea58ab269fb8dd1f5de011de4e

PLY: Cleanup properties description

===================================================================

M	io_mesh_ply/__init__.py

===================================================================

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(



More information about the Bf-extensions-cvs mailing list