룸리스트 업데이트

먼저 포톤에서 룸리스트를 가져오는 일반적인 방식이다. Network.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using Photon.Pun; using Photon.Realtime; public class Network : MonoBehaviourPunCallbacks { void Start() { PhotonNetwork.ConnectUsingSettings(); } public override void OnConnectedToMaster() { Debug.Log("서버 연결"); PhotonNetwork.JoinLobby(); } public override void OnJoinedLobby() ..
퐁스팡스
'룸리스트 업데이트' 태그의 글 목록