Skip to main content

RPC migration and compatibility

This section provides information on compatibility and support for Unity Netcode for GameObjects (Netcode) features compared to previous Netcode versions. See the Release Notes for more information.

Cross-Compatibility

Learn more about standard RPC API's cross-compatibility only, not the framework as a whole. A method marked as RPC will be statically registered with its assembly-scoped method signature hash.

A typical assembly-scoped method signature sample:

Game.dll / System.Void Shooter::PingServerRpc(System.Int32,MLAPI.Messaging.ServerRpcParams)

where:

  • Game.dll is the Assembly

  • / is a Separator

  • System.Void Shooter::PingServerRpc(System.Int32,MLAPI.Messaging.ServerRpcParams) is the Method signature:

    • System.Void is the Return type
    • Shooter is the Enclosing type
    • :: is the Scope resolution operator
    • PingServerRpc is the Method name
    • (System.Int32,MLAPI.Messaging.ServerRpcParams) is the Params with types (no param names)

An RPC signature will be turned into a 32-bit integer using xxHash (XXH32) non-cryptographic hash algorithm.

As expected, RPC signature therefore its hash will be changed if assembly, return type, enclosing type, method name and/or any method param type changes. Names of method parameters can be changed as they're not a part of the method signature.

A change in the RPC signature will lead into a different send/receive codepath with different serialization code and execute a different method body. Previous versions of the RPC method won't be executed by the new RPC method with the new signature.

CompatibilityDescription
Cross-Build CompatibilityAs long as the RPC method signature is kept the same, it will be compatible between different builds.
Cross-Version CompatibilityAs long as the RPC method signature is kept the same, it will be compatible between different versions.
Cross-Project CompatibilitySince project name or any project-specific token isn't being a part of RPC signature, it's possible to have the exact same RPC method signature defined in different builds and they're not necessarily going to be compatible with each other.

Deprecation of return values

Netcode supports RPC return values on convenience RPCs.

Example:

public IEnumerator MyRpcCoroutine()
{
RpcResponse<float> response = InvokeServerRpc(MyRpcWithReturnValue, Random.Range(0f, 100f), Random.Range(0f, 100f));

while (!response.IsDone)
{
yield return null;
}

Debug.LogFormat("The final result was {0}!", response.Value);
}

[ServerRPC]
public float MyRpcWithReturnValue(float x, float y)
{
return x * y;
}

To achieve similar functionality, use the following:

void MyRpcInvoker()
{
MyRpcWithReturnValueRequestServerRpc(Random.Range(0f, 100f), Random.Range(0f, 100f));
}

[ServerRpc]
void MyRpcWithReturnValueRequestServerRpc(float x, float y)
{
MyRpcWithReturnValueResponseClientRpc(x * y);
}

[ClientRpc]
void MyRpcWithReturnValueResponseClientRpc(float result)
{
Debug.LogFormat("The final result was {0}!", result);
}