| 217 | } |
| 218 | |
| 219 | U32 Forest::packUpdate( NetConnection *connection, U32 mask, BitStream *stream ) |
| 220 | { |
| 221 | U32 retMask = Parent::packUpdate( connection, mask, stream ); |
| 222 | |
| 223 | if ( stream->writeFlag( mask & MediaMask ) ) |
| 224 | stream->writeString( mDataFileName ); |
| 225 | |
| 226 | if ( stream->writeFlag( mask & LodMask ) ) |
| 227 | { |
| 228 | stream->write( mReflectionLodScalar ); |
| 229 | } |
| 230 | |
| 231 | return retMask; |
| 232 | } |
| 233 | |
| 234 | void Forest::unpackUpdate(NetConnection *connection, BitStream *stream) |
| 235 | { |
nothing calls this directly
no test coverage detected