BOLT can't load my Unity scenes

I made sure to add the scenes in the build settings, and I also hit 'Compile Assembly' multiple times.
However, when I click on "Start Server", I get the following error:
https://prnt.sc/tycu46

Comments

  • Hello @geronymo ,

    Make sure that the name of the Scene in the "Build Settings" and the Scene you are asking to load are exactly the same. If that does not work, try to remove the scene from the build list, add it again and recompile Bolt.

    For example, if I have the following scene list: https://imgur.com/tHTYqrf
    BoltMatchmaking.CreateSession(
    	sessionID: matchName,
    	sceneToLoad: "Tutorial1_Game",
    	token: props
    );
    

    Or, just load it with Bolt:
    BoltNetwork.LoadScene("Tutorial1_Game");
    

    --
    Ramon Melo
    Photon Bolt Team