示例#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);
 }