| 551 | //----------------------------------------------------------------------------- |
| 552 | |
| 553 | void SFXSound::setTransform( const MatrixF& transform ) |
| 554 | { |
| 555 | Parent::setTransform( transform ); |
| 556 | |
| 557 | if( mVoice && mDescription && is3d() ) |
| 558 | mVoice->setTransform( mTransform ); |
| 559 | } |
| 560 | |
| 561 | //----------------------------------------------------------------------------- |
| 562 |