View source
enum BackdropBlitMode
package flixel.addons.display
import flixel.addons.display.FlxBackdrop
Available on all platforms
Values
AUTO
Not implemented yet.
MAX_TILES_XY(x:Int, y:Int)
Blits a bitmap as big as the specified number of x and y tiles and repeats that.
MAX_TILES(tiles:Int)
Blits a bitmap as big as the specified number of tiles and repeats that.
SPLIT(portions:Int)
Blits enough tiles to cover the screen in multiple draws, for example, if the camera is 10x8 tiles big, SPLIT(2) will draw a blit target 5x4 tiles large and draw it 2x2 times to cover the stage.