Whats the point of Rooms?

Options
whats the point of Room room = new Room(); Does it create a new room? Or is it the same as PhotonNetwork.CreateRoom?

Comments

  • JohnTube
    JohnTube ✭✭✭✭✭
    edited April 2017
    Options
    Hi @Moddwyn,

    Thank you for choosing Photon!

    You do not need to do this Room room = new Room(); yourself. That's just a local object that represents a room.

    You should create and join rooms on server using PhotonNetwork methods and do not need to worry how stuff is handled internally for you.