增加绘制时装的隐藏图层

This commit is contained in:
Lenheart 2025-07-16 15:20:55 +08:00
parent b5961f140c
commit 8339658100
1 changed files with 12 additions and 0 deletions

View File

@ -401,6 +401,18 @@ class Rindro_Script {
}
i += 5;
}
//隐藏图层
else if (str == "[hide layer]") {
EquipmentAtt["hidelayer"] <- [];
while (true) {
local Buffer = Rindro_Script.UnpackData(IO, i);
i += 5;
if (Buffer == "[/hide layer]") {
break;
}
EquipmentAtt["hidelayer"].append(Buffer);
}
}
//Ani
else if (str == "[animation job]") {
local Job = Rindro_Script.UnpackData(IO, i).slice(1, -1);