| 232 | } |
| 233 | |
| 234 | void Forest::unpackUpdate(NetConnection *connection, BitStream *stream) |
| 235 | { |
| 236 | Parent::unpackUpdate(connection,stream); |
| 237 | |
| 238 | if ( stream->readFlag() ) |
| 239 | { |
| 240 | mDataFileName = stream->readSTString(); |
| 241 | } |
| 242 | |
| 243 | if ( stream->readFlag() ) // LodMask |
| 244 | { |
| 245 | stream->read( &mReflectionLodScalar ); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | void Forest::inspectPostApply() |
| 250 | { |
nothing calls this directly
no test coverage detected