로딩
티스토리 데이터 처리 중입니다.

유니티 C# 포톤 커스텀 프로퍼티 간단 사용법 Photon Custom Property

 유니티 C# 포톤 커스텀 프로퍼티 간단 사용법 Photon Custom Property

코드 작성 using System.Collections; using System.Collections.Generic; using UnityEngine; using Photon.Pun; using Photon.Realtime; using UnityEngine.UI; using Hashtable = ExitGames.Client.Photon.Hashtable; public class NetworkManager : MonoBehaviourPunCallbacks { public override void OnJoinedRoom() { statusText.text = "방에 참가하였습니다.

"; if (PhotonNetwork.IsMasterClient) { PhotonNetwork.CurrentRoom.SetCus.....