Closed
Description
- Flixel version: dev
- OpenFL version: 3.6.1
- Lime version: 2.9.1
- Affected targets: neko, windows
Code snippet reproducing the issue:
package;
import flixel.FlxSprite;
import flixel.FlxState;
import flixel.util.FlxColor;
class PlayState extends FlxState {
var sprite:FlxSprite;
override public function create():Void {
super.create();
sprite = new FlxSprite();
sprite.makeGraphic(300, 300, FlxColor.RED & 0x88FFFFFF);
add(sprite);
bgColor = FlxColor.GREEN;
}
}
If I remove the & 0x88ffffff
part, the sprite is plain red (which is good) on both legacy and next.
Metadata
Metadata
Assignees
Labels
No labels