Junte -se ou crie Room () Photon
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Photon.Pun;
using Photon.Realtime;
public class JoinToMainRoom : MonoBehaviourPunCallbacks
{
public void CreateOrJoinRoom()
{
RoomOptions roomOptions = new RoomOptions();
roomOptions.IsVisible = true;
roomOptions.MaxPlayers = 20;
PhotonNetwork.JoinOrCreateRoom("Game", roomOptions, TypedLobby.Default);
}
}
Wild Wolf