mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-05 19:54:24 -04:00
reactive speaker to gamevolume on desktop
This commit is contained in:
parent
817c216d06
commit
37a15e0a0f
1 changed files with 4 additions and 0 deletions
|
@ -101,6 +101,10 @@ class ABotVis extends FlxTypedSpriteGroup<FlxSprite>
|
|||
{
|
||||
var animFrame:Int = Math.round(levels[i].value * 5);
|
||||
|
||||
#if desktop
|
||||
animFrame = Math.round(animFrame * FlxG.sound.volume);
|
||||
#end
|
||||
|
||||
animFrame = Math.floor(Math.min(5, animFrame));
|
||||
animFrame = Math.floor(Math.max(0, animFrame));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue