Added back tonemapping

This commit is contained in:
Antoine Pilote
2024-04-28 18:17:09 -04:00
parent c55854ca61
commit 5216daed48
7 changed files with 361 additions and 310 deletions

View File

@@ -103,7 +103,7 @@ namespace Nuake
void Engine::ExitPlayMode()
{
// Dont trigger exit if already not in play mode.
if (s_GameState == GameState::Playing)
if (s_GameState != GameState::Stopped)
{
GetCurrentScene()->OnExit();
Input::ShowMouse();