예제 #1
0
파일: Actor.java 프로젝트: newisso/libgdx
 /** Changes the z-order for this actor so it is in back of all siblings. */
 public void toBack() {
   setZIndex(0);
 }
예제 #2
0
파일: Actor.java 프로젝트: newisso/libgdx
 /** Changes the z-order for this actor so it is in front of all siblings. */
 public void toFront() {
   setZIndex(Integer.MAX_VALUE);
 }