Package com.badlogic.gdx.tools.imagepacker

Examples of com.badlogic.gdx.tools.imagepacker.TexturePacker2$Rect


    }

    public void loadingGDX() {

        Settings settings = new Settings();
        settings.maxWidth = Detonator.INSTANCE.maxAtlasSizeX;
        settings.maxHeight = Detonator.INSTANCE.maxAtlasSizeY;

        if (regenerateAtlases) {
View Full Code Here


   * @return the rectangle information of the specified window.
   *
   */
  public static Rectangle getWindowRect(int hwnd)
  {
    RECT rect = new RECT();
    Extension.GetWindowRect(hwnd, rect);
    return new Rectangle(rect.left, rect.top, rect.right - rect.left, rect.bottom
        - rect.top);
  }
View Full Code Here

   */
  public static RECT getAppBarPosition(int handle) {
    APPBARDATA appBarData = new APPBARDATA();
    appBarData.hWnd = handle;
    Extension.SHAppBarMessage(Win32.AMB_GETTASKBARPOS, appBarData);
    RECT rc = new RECT();
    rc.left = appBarData.rcLeft;
    rc.top = appBarData.rcTop;
    rc.right = appBarData.rcRight;
    rc.bottom = appBarData.rcBottom;
    return rc;
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.tools.imagepacker.TexturePacker2$Rect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.