This repository has been archived on 2022-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
helium/src/org/hl/engine/graphics/Material.java
EvilMuffinHa d2b8e7015a Revert "adding textures (has errors)"
This reverts commit eb6101d2ec2d7828c40bccf4195a2bf3ec13780a.

reverting textures
2020-05-10 10:56:40 -04:00

45 lines
897 B
Java

package org.hl.engine.graphics;
import org.hl.engine.utils.TextureLoader;
import org.lwjgl.opengl.GL11;
import org.lwjgl.openvr.Texture;
import java.awt.image.BufferedImage;
public class Material {
private Texture texture;
private BufferedImage image;
private int width, height;
private int textureID;
public Material(String path) {
this.image = TextureLoader.loadImage(path); //The path is inside the jar file
}
public void create() {
this.width = this.image.getWidth();
this.height = this.image.getHeight();
this.textureID = TextureLoader.loadTexture(image);
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public int getTextureID() {
return textureID;
}
public void destroy() {
GL11.glDeleteTextures(textureID);
}
}