Search Unity

Tracked objects disappear when loading new scene

Discussion in 'AR' started by Aupuma, Jun 8, 2018.

  1. Aupuma

    Aupuma

    Joined:
    Feb 15, 2017
    Posts:
    42
    Hi, I'm developing an ARCore game and I have multiple scenes that have to be in AR. I have tried to put a DontDestroyOnLoad on the Controller, AR Device, on the planes and the Andy prefab.

    When loading a new scene, the camera feed works fine, but the objects that have to be tracked disappeared. Has anyone experienced the same problem? Any solution?
     
  2. Peter77

    Peter77

    QA Jesus

    Joined:
    Jun 12, 2013
    Posts:
    6,609
    You must call DontDestroyOnLoad on the GameObject, not the individual Components and DontDestroyOnLoad also only works on root GameObjects as far as I remember.
     
  3. Aupuma

    Aupuma

    Joined:
    Feb 15, 2017
    Posts:
    42
    Yeah, that's what I did, only DontDestroyOnLoad(gameobject) on the root gameobjects...