Skip to content

Commit 0e7183f

Browse files
committed
Make Update() sleep for 100ms to reduce CPU usage due to VRCFT constantly checking if the thread is alive
1 parent ac1ed30 commit 0e7183f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ETVRTrackingModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public override void Teardown()
3737

3838
public override void Update()
3939
{
40-
Thread.Sleep(0);
40+
Thread.Sleep(100);
4141
}
4242
}
4343
}

0 commit comments

Comments
 (0)