Hello,
I would like my server to ask the client to load some assets. But I want to be notified on the server when all client have finished this loading.
Currently, I have a multicast RPC to trigger the clients to load the assets.
How can I notify the server when such action is finished and when do I know that all clients have answered?
I guess I could do another RPC from client to server and then count the number of time to RPC is called on the server. But how do I get the count of how many client received the multicast RPC in the first place?
If anyone has an elegant solution to this problem, I’ll be happy to hear it.
Thanks !