From b989d74fca1a86c11c313cda8e6b68afec8a0acc Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 8 Oct 2025 18:36:55 +0200 Subject: [PATCH] feat: render sphere --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index b6173c6..6ff81db 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,7 +27,7 @@ class Game : public IApplication { public: Game() { - Object* lightObj = Object::LoadFile("./assets/cube.obj"); + Object* lightObj = Object::LoadFile("./assets/sphere.obj"); const auto lightEntity = m_registry.create(); m_registry.emplace(lightEntity, glm::vec3(-5.f, 5.f, 5.f), glm::vec3(0.f)); m_registry.emplace(lightEntity);