You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When fade gets provided with target volume that has over 2 decimal places (e.g. 0.158,...), it continues to rise indefinitely - eventually, it clips either at 0 or 1.
This is caused by using 0.01 update step and not checking if target volume was passed.
When fade gets provided with target volume that has over 2 decimal places (e.g. 0.158,...), it continues to rise indefinitely - eventually, it clips either at 0 or 1.
This is caused by using 0.01 update step and not checking if target volume was passed.
Solution: change https://github.com/goldfire/howler.js/blob/master/src/howler.core.js#L1138 to
if (vol > to) {
and addhowl.volume(to, id)
(to set the precise value as expected).The text was updated successfully, but these errors were encountered: