How do you make a login system, loading screen/quick match

Options
Right now I have it set to where as soon as you launch the game it asks your username.. Only problem is that it asks you this every. single. time. I want it to ask the player one time, to register with a username and password and an email. Then send this info to our website so that we have a log of all players.

The second thing I'd like to do is set it up to where when you join a room it displays a loading screen on what map is currently loading. I've tried this a few times and I end up some how losing the photon connection.

Finally, how do you create a quick match button, to where when you click it, it'll just throw you in a random room.

Thanks for all who read and to anyone who can help!

Comments

  • vadim
    Options
    PUN does not support login sytem. You need build your own or use some 3rd party provider's
    What PUN can do is to ask that provider or your server if client has valid token for access and refuse connection in case provider responds no.
    Use Custom Authentication feature (PhotonNetwork.AuthenticationValues) for such check.

    Other questions look more like about Unity.
    Nothing PUN-specific in creating screen or button, right?