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 2418e14 commit cb54aa9Copy full SHA for cb54aa9
flixel/text/FlxBitmapText.hx
@@ -338,7 +338,7 @@ class FlxBitmapText extends FlxSprite
338
{
339
checkPendingChanges(true);
340
341
- final colorHelper = Std.int(alpha * 0xFF) << 24 | this.color;
+ final colorHelper = Std.int(alpha * 0xFF) << 24 | this.color.rgb;
342
343
final textColorTransform = textColorTransformDrawHelper.reset();
344
textColorTransform.setMultipliers(colorHelper);
@@ -1806,4 +1806,4 @@ private class ReusableFrame extends FlxFrame
1806
* * whether split words get a hypen added automatically
1807
* * minimum character length of split word chunk
1808
* * whether to cut words that extend beyond the width
1809
- */
+ */
0 commit comments