* 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:
parent
7722b7b09d
commit
5a90cd7082
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user