PhotonPlayer.PhotonPlayer C# (CSharp) Method

PhotonPlayer() protected method

Internally used to create players from event Join
protected PhotonPlayer ( bool isLocal, int actorID, Hashtable properties ) : System.Collections
isLocal bool
actorID int
properties Hashtable
return System.Collections
    protected internal PhotonPlayer(bool isLocal, int actorID, Hashtable properties)
    {
        this.customProperties = new Hashtable();
        this.isLocal = isLocal;
        this.actorID = actorID;

        this.InternalCacheProperties(properties);
    }

Same methods

PhotonPlayer::PhotonPlayer ( bool isLocal, int actorID, string name ) : System.Collections