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 'io_mesh_ply/export_ply.py')
-rw-r--r--io_mesh_ply/export_ply.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/io_mesh_ply/export_ply.py b/io_mesh_ply/export_ply.py
index d4db5710..8de5d674 100644
--- a/io_mesh_ply/export_ply.py
+++ b/io_mesh_ply/export_ply.py
@@ -154,7 +154,8 @@ def save_mesh(filepath,
if use_colors:
fw("property uchar red\n"
"property uchar green\n"
- "property uchar blue\n")
+ "property uchar blue\n"
+ "property uchar alpha\n")
fw("element face %d\n" % len(mesh.tessfaces))
fw("property list uchar uint vertex_indices\n")
@@ -167,7 +168,7 @@ def save_mesh(filepath,
if use_uv_coords:
fw(" %.6f %.6f" % v[2]) # uv
if use_colors:
- fw(" %u %u %u" % v[3]) # col
+ fw(" %u %u %u %u" % v[3]) # col
fw("\n")
for pf in ply_faces: