| 165 | } |
| 166 | |
| 167 | void MissionMarker::unpackUpdate(NetConnection * con, BitStream * stream) |
| 168 | { |
| 169 | Parent::unpackUpdate(con, stream); |
| 170 | if(stream->readFlag()) |
| 171 | { |
| 172 | MatrixF mat; |
| 173 | stream->readAffineTransform(&mat); |
| 174 | Parent::setTransform(mat); |
| 175 | |
| 176 | Point3F scale; |
| 177 | mathRead(*stream, &scale); |
| 178 | setScale(scale); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | void MissionMarker::initPersistFields() |
| 183 | { |
nothing calls this directly
no test coverage detected