Skip to content

Commit

Permalink
PLY: Export alpha channel for vertex colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ideasman42 committed Jan 24, 2019
1 parent ada8216 commit caf0c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_mesh_ply/export_ply.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def rvec2d(v):
color = (int(color[0] * 255.0),
int(color[1] * 255.0),
int(color[2] * 255.0),
255
int(color[3] * 255.0),
)
key = normal_key, uvcoord_key, color

Expand Down

0 comments on commit caf0c86

Please sign in to comment.