Hey, I am moving a pawn with AddActorLocation, I have bReplicates enabled, but replicate movement disabled. At some point my pawn gets attached to another actor, and even though I have replicate movement disabled the RootComponent (Capsule) snaps into server position. How can I disable this? (I keep moving the pawn in the parent transform)…
I am handling position/rotation changes with my own code, so I need to disable this.
so if you override every USceneComponent that you need not replicated and override GetLifetimeReplicatedProps you can disable the replication. The component must be set to replicate for it to work.