| 263 | } |
| 264 | |
| 265 | void LightBase::advanceTime( F32 timeDelta ) |
| 266 | { |
| 267 | if ( isMounted() ) |
| 268 | { |
| 269 | MatrixF mat( true ); |
| 270 | mMount.object->getRenderMountTransform( 0.f, mMount.node, mMount.xfm, &mat ); |
| 271 | mLight->setTransform( mat ); |
| 272 | Parent::setTransform( mat ); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | U32 LightBase::packUpdate( NetConnection *conn, U32 mask, BitStream *stream ) |
| 277 | { |
nothing calls this directly
no test coverage detected