| 2292 | } |
| 2293 | |
| 2294 | void ShapeBase::updateAudioPos() |
| 2295 | { |
| 2296 | for (S32 i = 0; i < MaxSoundThreads; i++) |
| 2297 | { |
| 2298 | SFXSource* source = mSoundThread[i].sound; |
| 2299 | if ( source ) |
| 2300 | source->setTransform( getTransform() ); |
| 2301 | } |
| 2302 | } |
| 2303 | |
| 2304 | //---------------------------------------------------------------------------- |
| 2305 |
nothing calls this directly
no test coverage detected