|
@@ -219,9 +219,11 @@ public class ThreadService {
|
|
if(file.isDirectory()){
|
|
if(file.isDirectory()){
|
|
toGlB(file,localGlbPath);
|
|
toGlB(file,localGlbPath);
|
|
}
|
|
}
|
|
- if(file.getPath().contains("lod_") && file.getPath().contains("lod_0") && file.getName().contains(".obj") ){
|
|
|
|
- String glbPath = OBJToGLBUtil.objToB3dm(file.getPath(),file.getParentFile().getPath()+"/b3dm");
|
|
|
|
- localGlbPath.add(glbPath);
|
|
|
|
|
|
+ if(file.getPath().contains("lod_") ){
|
|
|
|
+ if(file.getPath().contains("lod_0") && file.getName().contains(".obj")){
|
|
|
|
+ String glbPath = OBJToGLBUtil.objToB3dm(file.getPath(),file.getParentFile().getPath()+"/b3dm");
|
|
|
|
+ localGlbPath.add(glbPath);
|
|
|
|
+ }
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
|