Ejemplo n.º 1
0
 /** Changes the z-order for this actor so it is in back of all siblings. */
 public void toBack() {
   setZIndex(0);
 }
Ejemplo n.º 2
0
 /** Changes the z-order for this actor so it is in front of all siblings. */
 public void toFront() {
   setZIndex(Integer.MAX_VALUE);
 }