TileSprite or Image?

Tile sprites shouldn’t be larger than the canvas size. If the tile sprite itself is 11000 pixels wide, the first thing you should try is using a more sensible size and scrolling the large texture with the tilePosition property.

If that doesn’t work, you’ll have to come up with a more creative way to show the background because 11000 pixels is a massive texture that not all devices can handle well. You could, for example, split it into several smaller textures and stitch them together with separate Image objects. In this case, you would likely need only one or two chunks to exist on the display list at once.

1 Like