Something like this:
[RPC]
public void RPC_Call_1() {
//Do something...
}
[RPC]
public void RPC_Call_2() {
//Do something...
//Obtain network view
networkView.RPC("RPC_Call_1", RPCMode.All, null);
}
I am wondering if it’s possible to nest RPC calls. I am not asking about code designs or anything, just asking for the possibility of nesting RPC calls. And if I can do nested RPC calls, yet my code is wrong, can you please explain the correct way of doing this?
Thanks in advance.