How does the master client know others players joined room?
The whole answer can be found below.
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).
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
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
.