Fix the issue mentioned in PR #186
This commit is contained in:
parent
c8a2a7260e
commit
c3542649b5
@ -450,6 +450,9 @@ public class MaterialLoader implements AssetLoader {
|
|||||||
}
|
}
|
||||||
String[] split = statement.getLine().split(" ", 2);
|
String[] split = statement.getLine().split(" ", 2);
|
||||||
matName = split[1].trim();
|
matName = split[1].trim();
|
||||||
|
if (matName.startsWith("\"") && matName.endsWith("\"")) {
|
||||||
|
matName = matName.substring(1, matName.length() - 1);
|
||||||
|
}
|
||||||
readMaterial(statement);
|
readMaterial(statement);
|
||||||
Material mat = compileMaterial();
|
Material mat = compileMaterial();
|
||||||
list.put(matName, mat);
|
list.put(matName, mat);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user