예제 #1
0
파일: Table.java 프로젝트: ngdelamo/libgdx
 /** Padding at the left edge of the table. */
 public Table padLeft(float padLeft) {
   layout.padLeft(padLeft);
   return this;
 }
예제 #2
0
파일: Table.java 프로젝트: ngdelamo/libgdx
 /** Padding at the left edge of the table. */
 public Table padLeft(Value padLeft) {
   layout.padLeft(padLeft);
   return this;
 }