Hello,
Actually I test HaxeFlixel, and I have a question :
how can I add a FlxTextField under graphics ?
Short example :
var txt:FlxTextField = new FlxTextField(120, 120, 0, "TEST");
txt.setFormat(null, 20, FlxColor.WHITE);
add(txt);
var sprite:FlxSprite = new FlxSprite(100, 100);
sprite.makeGraphic(100, 100, FlxColor.RED, false);
add(sprite);
In my project (flash, cpp), many texts are added in different FlxSpriteGroup, and they are always show on the top off all graphics, it's a problem for me :(
Haxe 3.2.1
HaxeFlixel 3.3.11
OpenFL 3.4.0
Lime 2.7.0
FlashDevelop
(sorry for my very poor english)