CoherenceSync.InterpolationLoop
enum in Coherence.Toolkit.CoherenceSync
At what point in the Unity update loop should interpolation happen.
Fields
FixedUpdate = 4Interpolate in Unity's 'FixedUpdate'.
LateUpdate = 2Interpolate in Unity's 'LateUpdate'.
LateUpdateAndFixedUpdate = LateUpdate | FixedUpdateInterpolate in both Unity's 'LateUpdate' and 'FixedUpdate'.
Update = 1Interpolate in Unity's 'Update'.
UpdateAndFixedUpdate = Update | FixedUpdateInterpolate in both Unity's 'Update' and 'FixedUpdate'.