| 681 | } |
| 682 | |
| 683 | void TSStatic::processTick(const Move* move) |
| 684 | { |
| 685 | if ( isServerObject() && mPlayAmbient && mAmbientThread ) |
| 686 | { |
| 687 | mShapeInstance->setTimeScale(mAmbientThread, mAnimSpeed); |
| 688 | mShapeInstance->advanceTime( TickSec, mAmbientThread ); |
| 689 | } |
| 690 | if (isMounted()) |
| 691 | { |
| 692 | MatrixF mat(true); |
| 693 | mMount.object->getMountTransform(mMount.node, mMount.xfm, &mat); |
| 694 | setTransform(mat); |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | void TSStatic::interpolateTick(F32 delta) |
| 699 | { |
nothing calls this directly
no test coverage detected