We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38c9836 commit 43d599aCopy full SHA for 43d599a
source/funkin/menus/ui/Alphabet.hx
@@ -345,6 +345,10 @@ class Alphabet extends FlxSprite {
345
}
346
347
function drawLetter(camera) {
348
+ // i'll have to improve this with blit rendering. not sure how.
349
+ // i can't just store all the bitmaps in the component since it's also responsable for flips and colors.
350
+ if (FlxG.renderBlit)
351
+ updateFramePixels();
352
_frame.prepareMatrix(_matrix, ANGLE_0, checkFlipX() != camera.flipX, checkFlipY() != camera.flipY);
353
354
_matrix.translate(_frame.frame.width * -0.5, _frame.frame.height * -0.5);
0 commit comments