From bf23537accd0ac36839d8cf1a9849e182d8b7aeb Mon Sep 17 00:00:00 2001 From: datacrystals Date: Tue, 21 Jun 2022 22:57:26 +0000 Subject: [PATCH] Implement Settings To Control Rendering (#220) --- Source/Core/Editor/Widgets/GUI_Widget_RenderingSettings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Editor/Widgets/GUI_Widget_RenderingSettings.cpp b/Source/Core/Editor/Widgets/GUI_Widget_RenderingSettings.cpp index f98961a788..f1004455cf 100644 --- a/Source/Core/Editor/Widgets/GUI_Widget_RenderingSettings.cpp +++ b/Source/Core/Editor/Widgets/GUI_Widget_RenderingSettings.cpp @@ -151,6 +151,8 @@ void Widget_RenderingSettings::Draw() { ImGui::Combo("Shadow Filtering", &SelectedShadowFiltering_, ShadowFilteringNames, 4); + ImGui::Combo("Shadow Update Mode", &SelectedShadowUpdates_, ShadowUpdateNames, 5); + if (Apply) { Settings->ShadowMapX_ = DepthMapResolution_[0];