Anyone know the photon voice disconnect command i wanna make this script have it

ZeroTime
✭
in Photon Voice
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Photon.Realtime;
using Photon.Pun;
public class ChangePhotonSettings : BirbButton
{
public AppSettings PhotonServerSetting;
public override void buttonEnter(bool isLeftHand)
{
PhotonNetwork.Disconnect();
PhotonNetwork.ConnectUsingSettings(PhotonServerSetting);
}
}
0