コード例 #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);
 }