Fix inappropriate default modelId

This commit is contained in:
wuuconix 2023-03-21 22:36:28 +08:00
parent ae27493c29
commit 2a2fd70c66

View File

@ -131,7 +131,7 @@ function loadWidget(config) {
modelTexturesId = localStorage.getItem("modelTexturesId");
if (modelId === null) {
// 首次访问加载 指定模型 的 指定材质
modelId = 1; // 模型 ID
modelId = 0; // 模型 ID
modelTexturesId = 53; // 材质 ID
}
model.loadModel(modelId, modelTexturesId);