Package org.pokenet.client.backend

Examples of org.pokenet.client.backend.ClientMap.render()


        g.scale(2, 2);
        for (int x = 0; x <= 2; x++) {
          for (int y = 0; y <= 2; y++) {
            thisMap = m_mapMatrix.getMap(x, y);
            if (thisMap != null && thisMap.isRendering()) {
              thisMap.render(thisMap.getXOffset() / 2,
                  thisMap.getYOffset() / 2, 0, 0,
                  (gc.getScreenWidth() - thisMap.getXOffset()) / 32,
                  (gc.getScreenHeight() - thisMap.getYOffset()) / 32,
                  false);
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.