Skip to content

Commit 589b335

Browse files
authored
feat(sample): drop non-blocking sync mode (#1110)
1 parent 84fe9c8 commit 589b335

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Assets/MediaPipeUnity/Samples/Common/Scripts/RunningMode.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ namespace Mediapipe.Unity
1010
public enum RunningMode
1111
{
1212
Async,
13-
NonBlockingSync,
1413
Sync,
1514
}
1615

1716
public static class RunningModeExtension
1817
{
1918
public static bool IsSynchronous(this RunningMode runningMode)
2019
{
21-
return runningMode == RunningMode.Sync || runningMode == RunningMode.NonBlockingSync;
20+
return runningMode == RunningMode.Sync;
2221
}
2322
}
2423
}

0 commit comments

Comments
 (0)