| 484 | } |
| 485 | |
| 486 | void SplineModel::Serialize(SerializeStream& stream, const void* otherObj) |
| 487 | { |
| 488 | // Base |
| 489 | ModelInstanceActor::Serialize(stream, otherObj); |
| 490 | |
| 491 | SERIALIZE_GET_OTHER_OBJ(SplineModel); |
| 492 | |
| 493 | SERIALIZE_MEMBER(Quality, _quality); |
| 494 | SERIALIZE_MEMBER(BoundsScale, _boundsScale); |
| 495 | SERIALIZE_MEMBER(LODBias, _lodBias); |
| 496 | SERIALIZE_MEMBER(ForcedLOD, _forcedLod); |
| 497 | SERIALIZE_MEMBER(PreTransform, _preTransform) |
| 498 | SERIALIZE(Model); |
| 499 | SERIALIZE(DrawModes); |
| 500 | |
| 501 | stream.JKEY("Buffer"); |
| 502 | stream.Object(&Entries, other ? &other->Entries : nullptr); |
| 503 | } |
| 504 | |
| 505 | void SplineModel::Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) |
| 506 | { |