| 541 | //----------------------------------------------------------------------------- |
| 542 | |
| 543 | void SFXSound::setVelocity( const VectorF& velocity ) |
| 544 | { |
| 545 | Parent::setVelocity( velocity ); |
| 546 | |
| 547 | if( mVoice && is3d() ) |
| 548 | mVoice->setVelocity( velocity ); |
| 549 | } |
| 550 | |
| 551 | //----------------------------------------------------------------------------- |
| 552 |