| 246 | |
| 247 | template<U32 COUNT> |
| 248 | void LightAnimData::AnimValue<COUNT>::read( BitStream *stream ) |
| 249 | { |
| 250 | for ( U32 i=0; i < COUNT; i++ ) |
| 251 | { |
| 252 | stream->read( &value1[i] ); |
| 253 | stream->read( &value2[i] ); |
| 254 | stream->read( &period[i] ); |
| 255 | keys[i] = stream->readSTString(); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | void LightAnimData::packData( BitStream *stream ) |
| 260 | { |
no test coverage detected