--------------------------------------------------------------------------
| 526 | |
| 527 | //-------------------------------------------------------------------------- |
| 528 | U32 Marker::packUpdate(NetConnection* con, U32 mask, BitStream* stream) |
| 529 | { |
| 530 | U32 retMask = Parent::packUpdate(con, mask, stream); |
| 531 | |
| 532 | // Note that we don't really care about efficiency here, since this is an |
| 533 | // edit-only ghost... |
| 534 | stream->writeAffineTransform(mObjToWorld); |
| 535 | |
| 536 | return retMask; |
| 537 | } |
| 538 | |
| 539 | void Marker::unpackUpdate(NetConnection* con, BitStream* stream) |
| 540 | { |
nothing calls this directly
no test coverage detected