Hey everyone! I'm new to Netcode for Game Objects and this is my first attempt at making a multiplayer prototype. I have a scene with two players, a Host and a Client, trying to pick up an item. When the item is picked up, the item's owner gets set to whoever picked it up, and the Network Transform gets disabled so the position is updated quicker - everyone locally updates the position, or at least that's what I was going for.
Right now if the Client picks up the item, the Host updates the position to make it less sluggish for the Host's pov.
The same should happen when a Host picks up the item, but instead the Client just sees the item freeze, and then unpause in the correct position once the item is dropped (when the Network Transform is enabled again).
I get the feeling this is happening because the Client cannot set the position of the item, but how can I replicate that without having the movement be sluggish? Any ideas? x.x