If someone would change pixel zoom var? idk

This commit is contained in:
Spel0 2021-08-12 14:02:17 +03:00
parent 6c1af6722b
commit 695bb8f02d

View File

@ -143,7 +143,7 @@ class Note extends FlxSprite
animation.add(dataColor[i] + 'holdend', [i + 4]); // Tails
}
var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * 4.5) : (width * PlayState.daPixelZoom)));
var widthSize = Std.int(PlayState.curStage.startsWith('school') ? (width * PlayState.daPixelZoom) : (isSustainNote ? (width * PlayState.daPixelZoom - 1.5) : (width * PlayState.daPixelZoom)));
setGraphicSize(widthSize);
updateHitbox();