Unity 3D Multiplayer
Hello everyone, I have a unique issue that I ran into working with the Unity UNET which I cannot seem to find a solution online.
So it is kind of a multiplayer survival game and I can't get the inventories to sync over the network. The inventory contains a list of items which is a "Item" class and unity doesn't seem to have an easy way to sync a list. [SyncVar] only works for simple variables.
Any help would be appreciated.
So it is kind of a multiplayer survival game and I can't get the inventories to sync over the network. The inventory contains a list of items which is a "Item" class and unity doesn't seem to have an easy way to sync a list. [SyncVar] only works for simple variables.
Any help would be appreciated.
Comments
See:
http://forum.unity3d.com/threads/syncvar-vs-clientrpc-for-syncing-arrays-and-structs.350203/#post-2267519
https://docs.unity3d.com/ScriptReference/Networking.SyncList_1.html
@Elyaradine I have had a look at SyncLists but I had difficulty with it. Maybe I used it incorrectly but I will have another try at it
Theres an example of it here: http://docs.unity3d.com/Manual/UNetStateSync.html
You can create a function in you item class to return a struct of the values you want to send.
I have made an inventory class that can be any of the following.
public enum InventoryType { Toolbelt, Backpack, Tools, Fuel, Input, Output, Storage}
The problem is that I might have 2 inventories attached to the player such as toolbelt and backpack. When I use [ClientRpc] it doesn't care which one of the 2 instances it is called from and it calls the first inventory on that object instead of both.
If the [ClientRpc] fired on all the inventories then I could have checked if it was the correct type but now it keeps calling the Backpack inventory when I try add something to the Toolbelt inventory.
Problem was that when there is 5 inventories on a single object just one of those [Command] functions will be called and on the incorrect target that you specified so then the server will just work with the correct inventory.
Here is the code for those that ever get stuck on the same issue.