Browse Source

断续拍摄算法入参变更

dengsixing 1 year ago
parent
commit
2ba9724e8a

+ 5 - 0
src/main/java/com/fdkankan/modeling/service/impl/BuildServiceImpl.java

@@ -9,6 +9,7 @@ import org.springframework.stereotype.Service;
 
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Objects;
 
 @Slf4j
 @Service
@@ -94,6 +95,10 @@ public class BuildServiceImpl implements IBuildService {
                     }
             }
         }
+        Integer location = fdageData.getInteger("location");
+        if(Objects.nonNull(location) && location == 7){
+            splitType = "SPLIT_V26";
+        }
         map.put("splitType", splitType);
         map.put("skyboxType", skyboxType);
         map.put("dataDescribe", dataDescribe);