enum InterpolationMode (Niantic.ARDK.AR.InterpolationMode)

Overview

The amount of synchronization with the camera pose to apply to each awareness buffer. Currently, awareness frames are surfaced at ~20 fps, while poses are surfaced at ~30 fps (Android) or ~60 fps (iOS). More…

enum InterpolationMode {
    None     = 0,
    Balanced = 1,
    Smooth   = 2,
};

Detailed Documentation

The amount of synchronization with the camera pose to apply to each awareness buffer. Currently, awareness frames are surfaced at ~20 fps, while poses are surfaced at ~30 fps (Android) or ~60 fps (iOS).

Enum Values

None

Don’t sync with the camera pose.

Balanced

The awareness buffer is synced one time with the camera when it surfaces to the app.

Smooth

The awareness buffer is synced with every pose until a new buffer replaces it.