From 0d9f4741da0a8a12239e134e5d5bcf9699cf0511 Mon Sep 17 00:00:00 2001 From: Federico Ponchio Date: Mon, 7 Aug 2023 15:53:25 +0200 Subject: [PATCH] ply vertex_index -> vertex_indices --- src/nxsedit/extractor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nxsedit/extractor.cpp b/src/nxsedit/extractor.cpp index a5058bc..1de1a1e 100644 --- a/src/nxsedit/extractor.cpp +++ b/src/nxsedit/extractor.cpp @@ -636,7 +636,7 @@ void Extractor::saveUnifiedPly(QString filename) { } if(has_faces) { stream << "element face " << n_faces << "\n" - << "property list uchar int vertex_index\n"; + << "property list uchar int vertex_indices\n"; } stream << "end_header\n"; //qtextstrem adds a \n when closed. stupid. }