|
@@ -1,5 +1,6 @@
|
|
|
package com.fdkankan.modeling.service.impl;
|
|
|
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.fdkankan.model.enums.ModelTypeEnums;
|
|
|
import com.fdkankan.modeling.service.IBuildService;
|
|
@@ -95,6 +96,10 @@ public class BuildServiceImpl implements IBuildService {
|
|
|
if(Objects.nonNull(location) && location == 7){
|
|
|
splitType = "SPLIT_V26";
|
|
|
}
|
|
|
+
|
|
|
+ if(StrUtil.isNotEmpty(resolution) && "6k".equals(resolution)){
|
|
|
+ skyboxType = "SKYBOX_V16";
|
|
|
+ }
|
|
|
map.put("splitType", splitType);
|
|
|
map.put("skyboxType", skyboxType);
|
|
|
return map;
|