MoveToBack
Introduction
Code Example
Layer layer1 = SpriteManager.AddLayer(); // This is drawn first (behind the other two)
Layer layer2 = SpriteManager.AddLayer(); // This is drawn second (between the other two)
Layer layer3 = SpriteManager.AddLayer(); // This is drawn last (in front of the other two)
SpriteManager.MoveToFront(layer1); // This makes layer1 drawn last (in front of the other nowLast updated
Was this helpful?