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
i wouldn't reccomend changing it, there's hundreds of bytebeats made over years that very deliberately rely on this behavior. even if you were to change it you certainly shouldn't give it a different behaviour, you should just remove it entirely. i should have gotten rid of it when i created funcbeat.
the issue is at line 224 of
scripts/audioProcessor.mjs
when a function is called
int
it usually means the function truncates the value passed, here it's actually flooring the valuethe difference between flooring and truncating is that flooring will round towards -infinity, while truncating will round towards 0
for example,
-2.4
will be floored to-3
, but it will be truncated to-2
you can change the
int
to be an alias toMath.trunc
to fix thisThe text was updated successfully, but these errors were encountered: