Skip to content

Commit

Permalink
Update CapsuleOptionsMenu.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
mcagabe19 authored Nov 28, 2024
1 parent 531bf78 commit 733a9cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/mikolka/vslice/freeplay/obj/CapsuleOptionsMenu.hx
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,15 @@ class InstrumentalSelector extends FunkinSprite
{
if (!press)
{
scale.x = scale.y = 1;
scale.x = scale.y = 1 * baseScale;
whiteShader.colorSet = false;
updateHitbox();
}
else
{
offset.y -= 5;
whiteShader.colorSet = true;
scale.x = scale.y = 0.5;
scale.x = scale.y = 0.5 * baseScale;
}
}

Expand Down

0 comments on commit 733a9cf

Please sign in to comment.