|
@@ -201,13 +201,10 @@ public class BuildSceneServiceImpl implements IBuildSceneService {
|
|
|
|
|
|
|
|
//写入算法参数文件
|
|
//写入算法参数文件
|
|
|
Map<String, String> dataMap = null;
|
|
Map<String, String> dataMap = null;
|
|
|
- if(message.getExt().get("genGs") != null){
|
|
|
|
|
- Integer genGs = (Integer) message.getExt().get("genGs");
|
|
|
|
|
- if(genGs != null && genGs == CommonStatus.YES.code().intValue()){
|
|
|
|
|
- dataMap = new HashMap<>();
|
|
|
|
|
- dataMap.put("splitType", "SPLIT_V34");
|
|
|
|
|
- dataMap.put("skyboxType", "SKYBOX_V15");
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ if(fdageJson.getIntValue("genGs") == CommonStatus.YES.code().intValue()){
|
|
|
|
|
+ dataMap = new HashMap<>();
|
|
|
|
|
+ dataMap.put("splitType", "SPLIT_V34");
|
|
|
|
|
+ dataMap.put("skyboxType", "SKYBOX_V15");
|
|
|
}
|
|
}
|
|
|
buildService.writeDataJson(message, fdageJson, dataMap, null);
|
|
buildService.writeDataJson(message, fdageJson, dataMap, null);
|
|
|
|
|
|