示例#1
0
 /**
  * Draws a rectangle with the bottom left corner at x,y having the width and height of the region.
  */
 public void draw(TextureRegion region, float x, float y) {
   draw(region, x, y, Math.abs(region.getRegionWidth()), Math.abs(region.getRegionHeight()));
 }