Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
SoundGuy's avatar
SoundGuy
Start Partner
2 years ago

Presence Platform Scene Manager SceneModelLoadedSuccessfully not being called

Hello,

I'm trying to get Scene data, so following the tutorials, I wrote a script that waits for the scene to be loaded and then iterate over the SceneAnchors.
It worked in one project. I took this c# script and moved it to another project, duplicated the bouncing ball demo scene and added my script there. 

My script is pointing to the OVRSceneManager that exists there in the bouncing ball scene.
In the logs, with verbose on,  I can see the scene is being loaded and finishes successfully, with the OVRSceneManager object but the  SceneModelLoadedSuccessfully not being called in my object.

This is in my code

if (_sceneManager == null)
{
_sceneManager = FindObjectOfType<OVRSceneManager>();
}

VRDebugger.Log(" Scene Manager" + _sceneManager);
_sceneManager.SceneModelLoadedSuccessfully += SceneModelLoaded;


What am I doing wrong?


2 Replies

Replies have been turned off for this discussion
  • I solve it. CameraRig -> OVR Manager : Scene Support change to [Supported]