Fixed the textures problem but it's still not amazing.

This commit is contained in:
Zed A. Shaw 2026-08-27 14:29:52 -04:00
parent 2ce7375233
commit d03afb31e1
8 changed files with 11 additions and 25 deletions

View file

@ -83,7 +83,6 @@ Scene setup() {
components::Scene config = utils::load_scene_config("config.json");
Scene scene(config);
scene.configure();
return scene;
}
@ -91,7 +90,7 @@ Scene setup() {
void update(GLFWwindow* window, Scene& scene) {
glfwPollEvents();
process_input(window, scene);
scene.updateDelta();
scene.update();
}
void render(GLFWwindow* window, Scene& scene) {