So Im trying to replicate my inventory system thats holds item in a TArray of UObjects (item class). I’m trying the new replicated Subobjects thats listed here:
I can get it to work with with single replicated UObject variables. But if I want to make an a TArray such as TArray<UItem*> Items; and modify a property such as the Owner of a single item in that array Items, I can’t figure it out? Does anything have any experience with this? ```
AddReplicatedSubObject(MySubObject) only allows UObjects and not arrays of UObjects. I tried adding each item of my Items array to AddReplicatedSubObject but it doesn’t work.