| 518 | } |
| 519 | |
| 520 | void TSStatic::processTick( const Move *move ) |
| 521 | { |
| 522 | if ( isServerObject() && mPlayAmbient && mAmbientThread ) |
| 523 | mShapeInstance->advanceTime( TickSec, mAmbientThread ); |
| 524 | |
| 525 | if ( isMounted() ) |
| 526 | { |
| 527 | MatrixF mat( true ); |
| 528 | mMount.object->getMountTransform(mMount.node, mMount.xfm, &mat ); |
| 529 | setTransform( mat ); |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | void TSStatic::interpolateTick( F32 delta ) |
| 534 | { |
nothing calls this directly
no test coverage detected