Photon Fusion 1.1.13

List of all members
RpcInvokeInfo Struct Reference

May be used as an optional RpcAttribute return value. Contains meta data about the RPC send, such as failure to send reasons, culling, message size, etc. More...

Detailed Description

May be used as an optional RpcAttribute return value. Contains meta data about the RPC send, such as failure to send reasons, culling, message size, etc.

Example:

| [Rpc] | public RpcInvokeInfo RpcFoo(int value) { | return default; | } | | public override void FixedUpdateNetwork() { | var info = RpcFoo(); | Debug.Log(info); | }