From e93ea6c8d038540f916a1c3ccafa8db8ba7c3dba Mon Sep 17 00:00:00 2001 From: halotroop2288 Date: Tue, 25 Feb 2020 22:39:58 -0800 Subject: [PATCH] Switch to an unsupported texture for testing --- src/main/java/com/github/halotroop/litecraft/Litecraft.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/halotroop/litecraft/Litecraft.java b/src/main/java/com/github/halotroop/litecraft/Litecraft.java index 2aaf144..6755ecc 100644 --- a/src/main/java/com/github/halotroop/litecraft/Litecraft.java +++ b/src/main/java/com/github/halotroop/litecraft/Litecraft.java @@ -36,7 +36,7 @@ public class Litecraft extends Game Window.create(1200, 800, "LiteCraft", 60); GingerUtils.init(); Window.setBackgroundColour(0.2f, 0.2f, 0.6f); - TexturedModel dirtModel = ModelLoader.loadGenericCube("block/cubes/stone/brick/brick.png"); + TexturedModel dirtModel = ModelLoader.loadGenericCube("block/cubes/stone/brick/stonebrick.png"); StaticCube.scaleCube(1); Player player = new Player(dirtModel, new Vector3f(0, 0, -3), 0, 180f, 0, new Vector3f(0.2f, 0.2f, 0.2f)); Camera camera = new Camera(new Vector3f(0, 0.1f, 0), player);