diff --git a/engine/core/src/debug.cpp b/engine/core/src/debug.cpp index b3d3550..2470156 100644 --- a/engine/core/src/debug.cpp +++ b/engine/core/src/debug.cpp @@ -60,6 +60,7 @@ void draw_lighting() { for(auto& [obj, light] : lights) { auto& transform = engine->get_scene()->get(obj); ImGui::DragFloat3((engine->get_scene()->get(obj).name + "Position").c_str(), transform.position.ptr()); + ImGui::DragFloat((engine->get_scene()->get(obj).name + "Light Size").c_str(), &light.size, 0.1f); } ImGui::Text("Environment");