Skip to content

Commit

Permalink
Update BabbleVRC.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dfgHiatus authored Apr 24, 2024
1 parent 240541c commit 3a138fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion BabbleVRC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,21 @@ public override (bool eyeSuccess, bool expressionSuccess) Initialize(bool eyeAva
streams.Add(hmdStream!);
ModuleInformation = new ModuleMetadata()
{
Name = "Project Babble Face Tracking\nInference Model v2.0.0",
Name = "Project Babble Face Tracking\nInference Model v2.0.7",
StaticImages = streams
};

return (false, true);
}

public override void Teardown() => babbleOSC.Teardown();

public override void Update()
{
foreach (var unifiedExpression in BabbleExpressions.BabbleExpressionMap)
{
UnifiedTracking.Data.Shapes[(int) unifiedExpression].Weight = BabbleExpressions.BabbleExpressionMap.GetByKey1 (unifiedExpression);
}
Thread.Sleep(10)'
}
}

0 comments on commit 3a138fd

Please sign in to comment.