Sfoglia il codice sorgente

* Fixed issue where OBJ loader would fail to parse faces correctly if they had more than 1 space in them

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10046 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
Sha..om 12 anni fa
parent
commit
5a90cd7082

+ 1 - 1
engine/src/core-plugins/com/jme3/scene/plugins/OBJLoader.java

@@ -234,7 +234,7 @@ public final class OBJLoader implements AssetLoader {
         vertList.clear();
 
         String line = scan.nextLine().trim();
-        String[] verticies = line.split("\\s");
+        String[] verticies = line.split("\\s+");
         for (String vertex : verticies){
             int v = 0;
             int vt = 0;