コード例 #1
0
ファイル: Table.java プロジェクト: ngdelamo/libgdx
 /** Padding at the bottom edge of the table. */
 public Table padBottom(float padBottom) {
   layout.padBottom(padBottom);
   return this;
 }
コード例 #2
0
ファイル: Table.java プロジェクト: ngdelamo/libgdx
 /** Padding at the bottom edge of the table. */
 public Table padBottom(Value padBottom) {
   layout.padBottom(padBottom);
   return this;
 }