I’m not sure if I missed this topic earlier in the course when we created our 2nd scene, but how should we handle player persistence between scenes? I don’t think it makes sense to have two separate instances of the Player prefab across the two scenes, because we want health/inventory/etc to carry over. However, I also don’t think we’ve tagged our Player as “DontDestroyOnLoad” (again, unless I missed this earlier in this section, which is probably the most likely answer ).
Right now, if I’m following correctly, when we load our 2nd scene we are simply searching for the instance of the player prefab that we already put there and moving it to the portal spawn point, and the player instance from our Sandbox1 scene is destroyed.