How does the master client know others players joined room?

The whole answer can be found below.

Please note: The Photon forum is closed permanently. After many dedicated years of service we have made the decision to retire our forum and switch to read-only: we've saved the best to last! And we offer you support through these channels:

Try Our
Documentation

Please check if you can find an answer in our extensive documentation on PUN.

Join Us
on Discord

Meet and talk to our staff and the entire Photon-Community via Discord.

Read More on
Stack Overflow

Find more information on Stack Overflow (for Circle members only).

Write Us
an E-Mail

Feel free to send your question directly to our developers.

How does the master client know others players joined room?

Frp529
2019-08-14 08:10:42

I would like others players joined room after master client will receive callback.

Comments

JohnTube
2019-08-14 11:25:51

Hi @Frp529,

Thank you for choosing Photon!

There is a callback when another remote player joins the room: IInRoomCallbacks.OnPlayerEnteredRoom(Player newPlayer).
There is a callback when the local player joins the room: IMatchmakingCallbacks.OnJoinedRoom().
To get the list of all players in the room: PhotonNetwork.CurrentRoom.Players.
To know if a player is MasterClient or not: Player.IsMasterClient.

Back to top