From 42089dff632feeab483f955fa0c5dbe98f04432f Mon Sep 17 00:00:00 2001 From: turanszkij Date: Tue, 6 Mar 2018 11:09:23 +0000 Subject: [PATCH] ssr and ssao no longer deferred only --- Editor/PostprocessWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Editor/PostprocessWindow.cpp b/Editor/PostprocessWindow.cpp index 4b9af3fd6..4929b7d72 100644 --- a/Editor/PostprocessWindow.cpp +++ b/Editor/PostprocessWindow.cpp @@ -45,7 +45,7 @@ PostprocessWindow::PostprocessWindow(wiGUI* gui, Renderable3DComponent* comp) : ppWindow->AddWidget(lightShaftsCheckBox); ssaoCheckBox = new wiCheckBox("SSAO: "); - ssaoCheckBox->SetTooltip("Enable Screen Space Ambient Occlusion. (Deferred only for now)"); + ssaoCheckBox->SetTooltip("Enable Screen Space Ambient Occlusion."); ssaoCheckBox->SetScriptTip("Renderable3DComponent::SetSSAOEnabled(bool value)"); ssaoCheckBox->SetPos(XMFLOAT2(x, y += 35)); ssaoCheckBox->SetCheck(component->getSSAOEnabled()); @@ -55,7 +55,7 @@ PostprocessWindow::PostprocessWindow(wiGUI* gui, Renderable3DComponent* comp) : ppWindow->AddWidget(ssaoCheckBox); ssrCheckBox = new wiCheckBox("SSR: "); - ssrCheckBox->SetTooltip("Enable Screen Space Reflections. (Deferred only for now)"); + ssrCheckBox->SetTooltip("Enable Screen Space Reflections."); ssrCheckBox->SetScriptTip("Renderable3DComponent::SetSSREnabled(bool value)"); ssrCheckBox->SetPos(XMFLOAT2(x, y += 35)); ssrCheckBox->SetCheck(component->getSSREnabled());