Skip to content

Commit

Permalink
Make sure click events are each sent on a separate frame
Browse files Browse the repository at this point in the history
  • Loading branch information
nAmKcAz committed Dec 13, 2024
1 parent e108b53 commit 33e8a87
Show file tree
Hide file tree
Showing 2 changed files with 140 additions and 123 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ public void PauseExploring(int segmentNumber)
RGDebug.LogInfo("ActionExplorationDriver - Paused Exploratory Actions");
}

ExplorationState = ExplorationState.PAUSED;
if (ExplorationState != ExplorationState.STOPPED)
{
ExplorationState = ExplorationState.PAUSED;
}
}

public void StopExploring(int segmentNumber)
Expand Down
Loading

0 comments on commit 33e8a87

Please sign in to comment.