Fixed serialization of DSeqPolyNode class objects

Polyobject pointer was not serialized at all
This commit is contained in:
alexey.lysiuk 2016-10-14 14:31:58 +03:00 committed by Christoph Oelckers
parent 36aff68501
commit 0370592422

View file

@ -442,7 +442,7 @@ IMPLEMENT_CLASS (DSeqPolyNode)
void DSeqPolyNode::Serialize(FSerializer &arc)
{
Super::Serialize (arc);
//arc << m_Poly;
arc("poly", m_Poly);
}
IMPLEMENT_CLASS (DSeqSectorNode)