We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cac9c commit c2baee8Copy full SHA for c2baee8
1 file changed
OSVR-Unity/Assets/OSVRUnity/src/ClientKit.cs
@@ -114,20 +114,12 @@ void OnEnable()
114
EnsureStarted();
115
}
116
117
- void FixedUpdate()
118
- {
119
- EnsureStarted();
120
- contextObject.update();
121
- }
122
-
123
- //may seem superfluous. the goal here is to update the client more often to make sure we have the most recent tracker data
124
- //this helps reduce latency
125
void Update()
126
{
+ EnsureStarted();
127
contextObject.update();
128
129
130
+
131
void LateUpdate()
132
133
0 commit comments