Skip to content

Commit f67214f

Browse files
committed
Reduce thread.sleep time to 0 in Update, prevents blocking and removes useless wait time
1 parent 37dac24 commit f67214f

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(10);
40+
Thread.Sleep(0);
4141
}
4242
}
4343
}

0 commit comments

Comments
 (0)