--------------------------------------------------------------------------
| 504 | |
| 505 | //-------------------------------------------------------------------------- |
| 506 | U32 Marker::packUpdate(NetConnection* con, U32 mask, BitStream* stream) |
| 507 | { |
| 508 | U32 retMask = Parent::packUpdate(con, mask, stream); |
| 509 | |
| 510 | // Note that we don't really care about efficiency here, since this is an |
| 511 | // edit-only ghost... |
| 512 | stream->writeAffineTransform(mObjToWorld); |
| 513 | |
| 514 | return retMask; |
| 515 | } |
| 516 | |
| 517 | void Marker::unpackUpdate(NetConnection* con, BitStream* stream) |
| 518 | { |
nothing calls this directly
no test coverage detected