Hi,
I created a FlxSpriteGroup and added it to screen.
Then i created 85 FlxSprite and add this sprites to FlxSpriteGroup. FlxSprites are simple and static which is do not change any its own property.
i created flxsprites as
var spriteline_0:FlxSprite = new FlxSprite();
spriteline_0.makeGraphic(FlxG.width, firstlineHeight, 0xffFAF39A);
spriteline_0.alpha = 0.3;
When i test on my LG G3, Stats show draw 85+.
is there a way to make 85 sprites to draw at once. and make Stats show draw as 1+
Thanks.