Accessing a Player by his Actor number
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).
Accessing a Player by his Actor number
Paladin83
2019-03-09 12:25:33
Hallo.
Could someone please make a simple example how to access a player in a room by his Actor number.
I need to check if a Player has left the room.
I was trying something like....
if (PhotonNetwork.PlayerList.ActorNumber[1] == null) { then }
Thanks a lot.
Comments
Hi @Paladin83,
I think you should make use of the callback IInRoomCallbacks.OnPlayerLeftRoom(otherPlayer)
.
Otherwise, there is a helper method Room.GetPlayer(int)
Player player = PhotonNetwork.CurrentRoom.GetPlayer(actorNumber);
if (player != null && !player.IsInactive)
{
// player is joined to the room
}
Thanks a lot.
Back to top