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...
Public Member Functions | |
override string | ToString () |
Public Attributes | |
RpcLocalInvokeResult | LocalInvokeResult |
RpcSendCullResult | SendCullResult |
RpcSendResult | SendResult |
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); | }