Package com.thecherno.cherno.engine.graphics

Examples of com.thecherno.cherno.engine.graphics.Texture


  public void setTileSize(int tileSize) {
    this.tileSize = tileSize;
  }

  public void load(String fileName) {
    Texture level = Texture.load(fileName);
    tiles = level.getPixels(Texture.FORMAT_RGB);
    width = level.getWidth();
    height = level.getHeight();
  }
View Full Code Here

TOP

Related Classes of com.thecherno.cherno.engine.graphics.Texture

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.