Buffered Problem to Load Scenes

I have this issue, my problem is that I have a PUN Buffered for All to load the scenes of an experience, let's suppose 5 scenes: 0, 1, 2, 3 and 4; the master connects and when I load another scene send a PUN AllBuffered to the rest of the players, and I do this to go beetween scenes 0 to 1, 1 to 2, 2 to 3, etc. Now, what happens if a player joins the room when I am in the scene number 4, Photon loads in order the scenes 0, 1, 2, 3 and then the 4. I need to load only the scene 4 when this player joins the Room. How I do that?

Comments

  • I resolve it! I only ask to the master client in wich scene he is by a PUN, then return the scene name and I load it after the connection.