Skip to content

Commit 3716e5f

Browse files
committed
Vroid2Pmx v2.1.6
1 parent eead238 commit 3716e5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/service/VroidExportService.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3018,15 +3018,15 @@ def create_model(self):
30183018
"出力ソフト情報がないため、処理を中断します。\nvrm1.0でエクスポートした場合、vrm0.0でエクスポートし直してください。",
30193019
decoration=MLogger.DECORATION_BOX,
30203020
)
3021-
return None, None, None
3021+
return None, None, None, None
30223022

30233023
if (
30243024
"extensions" not in model.json_data
30253025
or "VRM" not in model.json_data["extensions"]
30263026
or "meta" not in model.json_data["extensions"]["VRM"]
30273027
):
30283028
logger.error("メタ情報がないため、処理を中断します。", decoration=MLogger.DECORATION_BOX)
3029-
return None, None, None
3029+
return None, None, None, None
30303030

30313031
# if "VRoidStudio-0." in model.json_data["extensions"]["VRM"]["exporterVersion"]:
30323032
# # VRoid Studioベータ版はNG
@@ -3108,7 +3108,7 @@ def create_model(self):
31083108

31093109
if "images" not in model.json_data:
31103110
logger.error("変換可能な画像情報がないため、処理を中断します。", decoration=MLogger.DECORATION_BOX)
3111-
return None, None, None
3111+
return None, None, None, None
31123112

31133113
# jsonデータの中に画像データの指定がある場合
31143114
image_offset = 0

0 commit comments

Comments
 (0)