We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As of v0.6, cross-server RPC is supported via routing the server RPC (EFunctionFlags::FUNC_NetServer) to the authoratative server.
EFunctionFlags::FUNC_NetServer
The implementation has a drawback: it exposes the RPC that should only be used by servers to the clients.
To fix this, ChanneldUE should extend the EFunctionFlags to support server-to-server-only RPC.
EFunctionFlags
Ideally, the new function flag can be used both in C++ and Blueprint without modifying the engine.
Stakeholder: @laughxing
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of v0.6, cross-server RPC is supported via routing the server RPC (
EFunctionFlags::FUNC_NetServer
) to the authoratative server.The implementation has a drawback: it exposes the RPC that should only be used by servers to the clients.
To fix this, ChanneldUE should extend the
EFunctionFlags
to support server-to-server-only RPC.Ideally, the new function flag can be used both in C++ and Blueprint without modifying the engine.
Stakeholder: @laughxing
The text was updated successfully, but these errors were encountered: