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