We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 674c0ef commit 41ac6a6Copy full SHA for 41ac6a6
src/main/java/zmaster587/advancedRocketry/backwardCompat/WavefrontObject.java
@@ -82,11 +82,7 @@ private void loadObjModel(InputStream inputStream) throws ModelFormatException
82
lineCount++;
83
currentLine = currentLine.replaceAll("\\s+", " ").trim();
84
85
- /*if (currentLine.startsWith("#") || currentLine.length() == 0)
86
- {
87
- continue;
88
- }
89
- else*/ if (currentLine.startsWith("v "))
+ if (currentLine.startsWith("v "))
90
{
91
Vertex vertex = parseVertex(currentLine, lineCount);
92
if (vertex != null)
@@ -642,4 +638,4 @@ public String getType()
642
638
643
639
return "obj";
644
640
}
645
-}
641
+}
0 commit comments