| 537 | } |
| 538 | |
| 539 | void Marker::unpackUpdate(NetConnection* con, BitStream* stream) |
| 540 | { |
| 541 | Parent::unpackUpdate(con, stream); |
| 542 | |
| 543 | // Transform |
| 544 | MatrixF otow; |
| 545 | stream->readAffineTransform(&otow); |
| 546 | |
| 547 | setTransform(otow); |
| 548 | } |
nothing calls this directly
no test coverage detected