///////////////////////////////////////////////////////
| 205 | |
| 206 | //////////////////////////////////////////////////////////// |
| 207 | bool SoundSource::isSpatializationEnabled() const |
| 208 | { |
| 209 | if (const auto* sound = static_cast<const ma_sound*>(getSound())) |
| 210 | return ma_sound_is_spatialization_enabled(sound) == MA_TRUE; |
| 211 | |
| 212 | return false; |
| 213 | } |
| 214 | |
| 215 | |
| 216 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected