From f3b2011feff8c82742d2041f7a5055c9f330fc9f Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Sat, 4 Feb 2023 08:25:07 -0600 Subject: [PATCH] Small fix --- Source/Engine/Particles/ParticleEffect.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Particles/ParticleEffect.cpp b/Source/Engine/Particles/ParticleEffect.cpp index 04fd6eedb..651ff719b 100644 --- a/Source/Engine/Particles/ParticleEffect.cpp +++ b/Source/Engine/Particles/ParticleEffect.cpp @@ -453,7 +453,10 @@ void ParticleEffect::UpdateExecuteInEditor() // Always Play in editor while not playing. // Could be useful to have a GUI to change this state if (!_play) - _play = true; + { + _play = true; + _isPlaying = true; + } Update(); }