소스 검색

Correct the previous PR a bit
* Support 1D and 3D texture coordinates specified by ogre exporter as well as 2D

shadowislord 10 년 전
부모
커밋
c8a2a7260e
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshLoader.java

+ 5 - 1
jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshLoader.java

@@ -429,7 +429,11 @@ public class MeshLoader extends DefaultHandler implements AssetLoader {
 
         int texCoords = parseInt(attribs.getValue("texture_coords"), 0);
         for (int i = 0; i < texCoords; i++) {
-            int dims = parseInt(attribs.getValue("texture_coord_dimensions_" + i).replaceAll("float2", "2"), 2);
+            String dimsStr = attribs.getValue("texture_coord_dimensions_" + i);
+            if (dimsStr.startsWith("float")) {
+                dimsStr = dimsStr.substring("float".length());
+            }
+            int dims = parseInt(dimsStr, 2);
             if (dims < 1 || dims > 4) {
                 throw new SAXException("Texture coord dimensions must be 1 <= dims <= 4");
             }