Serialize isSolid on BSP component

This commit is contained in:
antopilo
2023-03-14 22:40:37 -04:00
parent 01b62d5e34
commit 7186ae001e

View File

@@ -38,6 +38,7 @@ namespace Nuake {
j["Meshes"][i] = Meshes[i]->Serialize();
}
j["IsSolid"] = IsSolid;
END_SERIALIZE();
}
@@ -45,7 +46,10 @@ namespace Nuake {
{
BEGIN_DESERIALIZE();
if (j.contains("IsSolider"))
{
IsSolid = j["IsSolid"];
}
return true;
}