| 385 | float AbyssEngine::getVideoVolumeLevel() const { return _videoAudioLevel; } |
| 386 | |
| 387 | void AbyssEngine::setVideoVolumeLevel(const float level) { |
| 388 | _videoAudioLevel = std::clamp(level, 0.0f, 1.0f); |
| 389 | _videoAudioLevelActual = std::pow(_videoAudioLevel, 2.0f); |
| 390 | } |
| 391 | |
| 392 | float AbyssEngine::getBackgroundMusicVolumeLevel() const { return _backgroundMusicAudioLevel; } |
| 393 |
nothing calls this directly
no outgoing calls
no test coverage detected