Generic RPC
Generic RPC's will allow you to easily send any data type over the network! You can even send multiple generics
Last updated
Generic RPC's will allow you to easily send any data type over the network! You can even send multiple generics
Last updated
private void SendFirst()
{
TestRpc("Purrfect!", true);
}
private void SendSecond()
{
TestRpc(69, 4.20f);
}
[ServerRpc]
private void TestRpc<T, P>(T myData1, P myData2)
{
Debug.Log($"Received {myData1} with type of: {myData1.GetType()}");
Debug.Log($"Received {myData2} with type of: {myData2.GetType()}");
}