NetworkingPeer.GetLocalActorProperties C# (CSharp) 메소드

GetLocalActorProperties() 개인적인 메소드

private GetLocalActorProperties ( ) : ExitGames.Client.Photon.Hashtable
리턴 ExitGames.Client.Photon.Hashtable
    private Hashtable GetLocalActorProperties()
    {
        if (PhotonNetwork.player != null)
        {
            return PhotonNetwork.player.allProperties;
        }

        Hashtable actorProperties = new Hashtable();
        actorProperties[ActorProperties.PlayerName] = this.PlayerName;
        return actorProperties;
    }
NetworkingPeer