diff --git a/src/main.cpp b/src/main.cpp index b35b37d..9665f50 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -260,6 +260,8 @@ int main(int argc, char* argv[]) { if(SDL_GetWindowFlags(window) & SDL_WINDOW_INPUT_FOCUS) io.MousePos = ImVec2(static_cast(mouseX), static_cast(mouseY)); + ImGui::DragFloat("Aperture", &cameraComponent->aperture, 0.1f); + ImGui::DragFloat("Focus Distance", &cameraComponent->focusDistance, 0.1f); ImGui::Render(); #endif