We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bc5bf6 commit 8b7fc84Copy full SHA for 8b7fc84
Assets/Scripts/Services/EphysLinkService.cs
@@ -94,8 +94,9 @@ public EphysLinkService(StoreService storeService)
94
private async void OnSceneStateChanged(SceneState sceneState)
95
{
96
// Handle demo loop state changes.
97
- foreach (var manipulatorState in sceneState.Manipulators)
+ for (int i = 0; i < sceneState.Manipulators.Count; i++)
98
99
+ var manipulatorState = sceneState.Manipulators[i];
100
var isRunning = _runningDemoLoops.Contains(manipulatorState.Id);
101
102
switch (manipulatorState.IsDemoRunning)
0 commit comments