* 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
This commit is contained in:
Sha..om 2012-12-28 03:07:25 +00:00
parent 7722b7b09d
commit 5a90cd7082

View File

@ -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;