|
@@ -680,6 +680,15 @@ public class SceneDownloadHandlerServiceImpl {
|
|
|
if(CollUtil.isEmpty(keys)){
|
|
|
continue;
|
|
|
}
|
|
|
+
|
|
|
+ //mesh只保留精模
|
|
|
+ keys.stream().filter(v->{
|
|
|
+ if(v.contains("/mesh/floor_") && !v.contains("lod_0")){
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }).collect(Collectors.toList());
|
|
|
+
|
|
|
if(FYunTypeEnum.AWS.code().equals(this.uploadType)){
|
|
|
keys = keys.stream().filter(key->{
|
|
|
if(key.contains("x-oss-process")){
|