コード例 #1
0
ファイル: Grouper.java プロジェクト: jtorrente/ead
 @Override
 public void clear() {
   super.clear();
   setBounds(0, 0, 0, 0);
   setRotation(0);
   setScale(1, 1);
   setOrigin(0, 0);
 }
コード例 #2
0
ファイル: Stage.java プロジェクト: QuantScientist3/libgdx
 /** Removes the root's children, actions, and listeners. */
 public void clear() {
   unfocusAll();
   root.clear();
 }
コード例 #3
0
ファイル: Table.java プロジェクト: savra57/libgdx-svg
 /** Removes all actors and cells from the table. */
 public void clear() {
   super.clear();
   layout.clear();
 }