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