Allow `FrameStabilityContainer` to continue updating while paused during replay playback

This commit is contained in:
Dean Herbert 2024-01-18 14:15:22 +09:00
parent 2afa4c7e1c
commit e73910571f
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ private void updateClock()
// if waiting on frames, run one update loop to determine if frames have arrived.
state = PlaybackState.Valid;
}
else if (IsPaused.Value)
else if (IsPaused.Value && !hasReplayAttached)
{
// time should not advance while paused, nor should anything run.
state = PlaybackState.NotValid;