Created
June 5, 2013 21:46
-
-
Save birarda/5717577 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const float DISTANCE_REVERB_LOG_REMAINDER = 0.32f; | |
| const float DISTANCE_REVERB_MAX_WETNESS = 1.0f; | |
| float effectMix = powf(2.0f, (0.5f * logf(distanceSquareToSource) / logf(2.0f)) - DISTANCE_REVERB_LOG_REMAINDER) * DISTANCE_REVERB_MAX_WETNESS / 64.0f; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment