Skip to content

Commit 6a65e7e

Browse files
committed
Fix ETVR module stopping Babble and other mouth tracking modules from being initialized
1 parent a368202 commit 6a65e7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ETVRTrackingModule.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class ETVRTrackingModule : ExtTrackingModule
99
{
1010
private OSCManager? _oscManager;
1111
private ExpressionsMapper? _expressionMapper;
12-
public override (bool SupportsEye, bool SupportsExpression) Supported => (true, true);
12+
public override (bool SupportsEye, bool SupportsExpression) Supported => (true, false);
1313
public override (bool eyeSuccess, bool expressionSuccess) Initialize(bool eyeAvailable, bool expressionAvailable)
1414
{
1515
ModuleInformation.Name = "ETVR Eye Tracking module";
@@ -24,7 +24,7 @@ public override (bool eyeSuccess, bool expressionSuccess) Initialize(bool eyeAva
2424
_oscManager = new OSCManager(Logger, _expressionMapper, ref config);
2525
_oscManager.Start();
2626

27-
if (_oscManager.State == OSCState.CONNECTED) return (true, true);
27+
if (_oscManager.State == OSCState.CONNECTED) return (true, false);
2828

2929
Logger.LogError("ETVR Module could not connect to the specified port.");
3030
return (false, false);

0 commit comments

Comments
 (0)