|
|
@ -430,7 +430,7 @@ public class MeshLoader extends DefaultHandler implements AssetLoader { |
|
|
|
int texCoords = parseInt(attribs.getValue("texture_coords"), 0); |
|
|
|
int texCoords = parseInt(attribs.getValue("texture_coords"), 0); |
|
|
|
for (int i = 0; i < texCoords; i++) { |
|
|
|
for (int i = 0; i < texCoords; i++) { |
|
|
|
String dimsStr = attribs.getValue("texture_coord_dimensions_" + i); |
|
|
|
String dimsStr = attribs.getValue("texture_coord_dimensions_" + i); |
|
|
|
if (dimsStr.startsWith("float")) { |
|
|
|
if (dimsStr != null && dimsStr.startsWith("float")) { |
|
|
|
dimsStr = dimsStr.substring("float".length()); |
|
|
|
dimsStr = dimsStr.substring("float".length()); |
|
|
|
} |
|
|
|
} |
|
|
|
int dims = parseInt(dimsStr, 2); |
|
|
|
int dims = parseInt(dimsStr, 2); |
|
|
|