WVR_StopScene

WVR_EXPORT void WVR_StopScene()

Function is used to stop scene and anchor features.

This API will stop operations related to scene perception and anchors.

Version
API Level 11

How to use

Sample function:

#include <wvr/wvr_scene.h>

if (WVR_StartScene() == WVR_Success) {
    // WVR_StartScenePerception
    // ...

    WVR_StopScene();
} else {
    // start scene failed!
}