I must be missing something. The concept of this seems simple enough but it’s just not working.
I am doing this globally at the beginning of the Photon session ( and during runtime as needed):
//This should mean we send to peers in our own area and close areas
PhotonNetwork.SetSendingEnabled(disableSend.ToArray(), enableSend.ToArray());
//This is for receiving. EnableInterest just has one area - mine. DisableInterest has all other areas
PhotonNetwork.SetInterestGroups(disableInterest.ToArray(), enableInterest);
Firstly I get an error: Operation ChangeGroups (248) not allowed on current server (MasterServer)
Then the error goes away, even when the code runs again. But the culling has no effect.
If anyone has any ideas…