반응형
- 코드 작성
using System;
using System.Collections;
using UnityEngine;
using Photon.Pun;
using Photon.Realtime;
public class NetworkManager : MonoBehaviourPunCallbacks
{
private void LoadScene()
{
PhotonNetwork.LoadLevel("Scene Name");
}
}
반응형