| 515 | } |
| 516 | |
| 517 | void Marker::unpackUpdate(NetConnection* con, BitStream* stream) |
| 518 | { |
| 519 | Parent::unpackUpdate(con, stream); |
| 520 | |
| 521 | // Transform |
| 522 | MatrixF otow; |
| 523 | stream->readAffineTransform(&otow); |
| 524 | |
| 525 | setTransform(otow); |
| 526 | } |
nothing calls this directly
no test coverage detected